TypedJava is a simple Java interpreter for the browser. It allows you to write and run small Java snippets directly on a webpage β perfect for wiki pages, tutorials, or educational demos! π
- β Run simple Java code in the browser without installing Java
- β
Supports basic types:
int,double,String - β
Supports
System.out.printlnfor output - β Simple wiki-style integration β display code examples with a Run button
- β Save and load code snippets in LocalStorage
- β Lightweight and easy to embed in any HTML page
int a = 5;
int b = 10;
System.out.println("Sum: " + (a+b));
Run Example
<script type="module">
import { WikiJava } from './TypedJava.ts';
const app = new WikiJava('codeArea','output');
document.getElementById('runBtn').onclick = () => app.run();
</script>
- TypedJava is a Project to run Java on Browser Used TypeScript for Programming it and you don't need any thing to run & it is an Interpreter
- Mozilla 1.0