/**
 * Simple.java
 *
 * A really simple Java program to complain about the weather.
 *
 * These lines are comments -- they're not executed; instead, they're
 * here to describe what's happening in this program ... what it is,
 * who wrote it, when it was written, etc.  You can also put comments
 * after "//" on a line, as is done a couple of times below.
 *
 * David Liben-Nowell
 * CS117, Spring 2006
 */

public class Simple {   // this is a class definition.

   /**
    * An example of a method (action).
    * The main method must appear in any program that you want to run.
    */
   public static void main(String[] args) {

      System.out.println("Early enough for ya?");

   }

}  // the end of the program!
