// file:    hello.java
// author:  Robert Keller
// purpose: hello-world program

// to compile this program:	javac hello.java

// to run this program:		java hello

class hello
{

public static void main(String arg[])	// main program or test
  {
  System.out.println("Hello, world!");
  }

}

