Hello World July 12, 2018
The classic Hello World application that runs on the JNIOR!
package helloworld; public class HelloWorld { /** * @param args the command line arguments */ public static void main(String[] args) { System.out.println("hello world"); } }