import rebelsky.io.SimpleOutput;

/**
 * A simple Java program that illustrates textual output.
 *
 * @author Samuel A. Rebelsky
 * @version 1.0 of January 1998
 */
public class HelloWorld 
{
  /**
   * Print the string "Hello world." to standard output.
   */
  public static void main(String[] args) 
  {
    // The object we're using to print output
    SimpleOutput out;
    // Set up output
    out = new SimpleOutput();
    // And print
    out.println("Hello world");
    // That's it
    System.exit(0);
  } // main
} // HelloWorld

