Sunday, September 14, 2008

Java Video Tutorial 2: 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!");
}
}