// From A Beginning Programmer's Guide to Java
// at http://beginwithjava.blogspot.com/

// Referenced in the following articles:
// http://beginwithjava.blogspot.com/2008/06/main.html
// http://beginwithjava.blogspot.com/2008/06/comments.html
// http://beginwithjava.blogspot.com/2008/06/code-blocks.html
// http://beginwithjava.blogspot.com/2008/06/import-statements.html

/* Hello.java
  A really simple program that prints the word hello.
  This program is a console, or command-line program.
*/
// Written 18 June 2008 by Mark Graybill

public class Hello{
  public static void main(String arg[]){
    System.out.println("Hello");
  } // End of main()
} // End of Hello