We offer three choices:Jr, APS, Java
Output "Hello, world"
Notice, no semicolon.
JJS.outputString("Hello, world");
Notice, Java syntax. JJS is the JJ System used for Input and Output
as well as Design by Contract, debugging and other goodies.
class MyFirstClass {
public static void main (String[] args) {
System.out.println("Hello, world");
}
}