Saturday, September 13, 2008

Java Tutorial 1: Hello, World


Here is an example of Hello World program. Please understand that it is NOT a part of the above video clip. It is provided for education purpose only.

class helloWorld
{
public static void main(String args[])
{
System.out.println("Hello World!");
}
}