/** * Matt Kretchmar * January 17, 2006 * HelloWorld.java * This program prints a welcome message to the screen */ class HelloWorld { public static void main ( String []args ) { System.out.println("Hello, world!"); } }