Difference between revisions of "Java program template"

From WLCS
 
m (Protected "Java program template" ([edit=sysop] (indefinite) [move=sysop] (indefinite)))
(No difference)

Revision as of 07:09, 23 April 2012

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
    }
}