
// Starter for writing Console applets using
// David Eck's ConsoleApplet class.  For more
// information, read the comments at the beginning
// of the file ConsoleApplet.java.


public class MyApplet extends ConsoleApplet {

   public void init() {
      // Set the name of the program, to be displayed
      // at the top of the applet.

      title = "Sample Program";  // use any name you want
      
      super.init();  // Do not change this line!
   }

   public void program() {

      // (DO NOT use "new Console()" or "console.close()"!)
      // Replace the following line with your program.

      console.putln("Hello World");

   }  // end of program()

}  // end of class MyApplet
