import java.io.PrintWriter;              // Introduce shorthand
/**                                      // Introductory comment
 * Your first Java program.
 *
 * @author Samuel A. Rebelsky            // Author of the program
 * @version 1.2 of March 2004            // Version of the program
 */                                      // End of introductory comment
public class FirstProgram                // Class declaration
{                                        // Start body of class
  public static void main(String[] args) // Declare main method
  {                                      // Start body of main method
    PrintWriter output;                  // Declare variable
    output = new PrintWriter(System.out,true);
                                         // Create object
    output.println("That's it!");        // Call object method
  } // main(String[] args)               // End body of main method
} // class FirstProgram                  // End body of class


