Difference between revisions of "Java program template"

From WLCS
(No difference)

Revision as of 09:46, 4 September 2008

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