From Alice to Java

The Alice source code is interpreted, not compiled. Java source code must be compiled into bytecode using the javac compiler tool. To do this, at the command prompt, enter javac HelloWorldApp.java Bytecode is an intermediate portable language, not native machine code. javac saves the bytecode in a file called HelloWorldApp.class debugging ... ................
................