Java program template

From WLCS
Revision as of 07:09, 23 April 2012 by Admin (talk | contribs) (Protected "Java program template" ([edit=sysop] (indefinite) [move=sysop] (indefinite)))

This is an example Java template for the the main method:

// JavaTemplate.java
public class JavaTemplate
{
    public static void main(String[] args) 
    {
        // INSERT CODE HERE
    }
}