/* <--This starts a comment Hello world program. It must be in a file called HelloWorld.java To compile and run: > javac HelloWorld.java > java HelloWorld This ends a comment --> */ public class HelloWorld{ public static void main(String args[]){ System.out.println("Hello out there!\n"); // <-- This is a comment too } }