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

// Used in the article 'The Basic Program Skeleton'
// at http://beginwithjava.blogspot.com/2008/07/basic-program-skeleton.html

// This very simply gives the most basic program skeleton for Java.
// This is _very_ simple, but for beginners sometimes this gets lost,
// as authors and teachers skim over it.
// by Mark Graybill, July 2008
// See the original article, and related articles on basic Java at the blog for more information.

public class YourProgramName{
  public static void main(String arg[]){

    /* Your Program Goes Here */

  }
}