previous | start | next

A Simple Java Program

Even the simplest java program requires quite a lot of syntactic elements:

    1   public class Hello
    2   {
    3     public static void main(String[] args)
    4     {
    5       System.out.println("Hello, world!");
    6     }
    7   }

Note: The name of the parameter to main is typically chosen to be args, but can be any programmer chosen name.



previous | start | next