// helloworld David I. Schwartz, 1/2000
// task: say hello

public class helloworld {

    public static void main(String[] args) { 

	// say hi
	System.out.println("Hello, world!");
	// Try the following:
	// System.out.print("Hello, world!\n");
	// What happens?

    } // method main
 
} // class helloworld