/** * Class for creating a template for a simple Java program * * @author Pat Troy: troy AT uic DOT edu */ // Note the name of the class in the following line MUST // match the name of the file. This is stored in a file // named: Template.java public class Template { public static void main (String[] args) { System.out.println("Begin Java Exection"); System.out.println(""); // put your Java Program here System.out.println(""); System.out.println("End Java Exection"); } } // end of Template class