
/* ----------------------------------------------------
   This is your first Java program
   ---------------------------------------------------- */

public class hello     // The name of this class is hello
{
    // There are no variables defined in the class

    /* ------------------------------------------------------
       A Java program starts executing with the method "main"
       ------------------------------------------------------ */
    public static void main(String[] args)
    {
        System.out.println("Hello World");  // Prints "Hello World"
    }
}

