public class Huzzah
{    // Typical first program

    /*     Block comment:
        Comment continues until closed.
        CLosed on next line.
    */

    public static void main(String[] args)
    {    System.out.println("\"Huzzah\":");
        System.out.println("Etymology: origin unknown");
        System.out.print ("an expression or shout of ");
        System.out.print("acclaim -- often used ");
        System.out.print("interjectionally to express joy");
        System.out.println(" or approbation.");
    }    // end of method main


}// end of class Huzzah

