/** * * hello-world.java - my first attempt at java * prints "hello world!" to stdout. * For Jim's Programming Workshop, Spring 2006 * * Daniel Garcia-Galili, January 2006 - dgg@marlboro.edu */ class hello_world { public static void main(String[] args) { System.out.println("Hello World!"); } }