// HelloWorld.java // This is the classic "Hello World" program. // It simply prints out the words "Hello World" (or some such) // and exits. // You should use this program to verify that you have // properly installed and configured Java and DrJava. class HelloWorld { public static void main(String[] args) { System.out.println("Lo! purling World, how hath thou twirl'd?"); } }