// The "Hello" class.
public class Hello
{
    public static void main (String[] args)
    {
	System.out.println("Hello! This is my first program in Java.");
    } // main method
} // Hello class

