First Class — Not Typical


Minimal Class for a Minimal Program

    /**
     * Simple program example:
     * This is the simplest type of class that produces output.
     * It has 1 class, with a single method that has a single statement.
     *
     * @author Ann Instructor, 1 January 2016
     */
    public class VerySimpleProgramClass
    {
        /** The main function initiates execution of this program. */
        public static void main()
        {
            System.out.println ("Hello, world!");
        }
    }

Alyce Brady, Kalamazoo College