Hello World Program 















Home

The following code will print the words "Hello World" on the screen. This will be in the DOS box for now, but don't
worry in the very next page we will be creating a GUI application                                                           


class helloworld

    {
    public static void main(String StringArray1[])
   
        {
        System.out.println("Hello World");   
        }   
    }












Copyright 2005 Gehan Ameresekere



Hosted by www.Geocities.ws

1