public static void main(String[] args)
{
statements
}
*******************************************************
example:
public class InvoiceApp
{
public static void main(String[] args)
{ // begin main method
System.out.println("Welcome to the Invoice Total Calculator");
} // end main method
}
*******************************************************