Thursday, June 17, 2010

Java - "Hello World"

Before you start learning any language, even before it's theoretical part, the Hello World example always gives you an idea about that language. About that today:-
Hello World in JAVA
public class Main
{
public static void main(String[] args)
{
System.out.println("Hello World");
}
}
In-Depth: The System.out.println("Your - Message") function, note that it is a function, prints the "Your - Message" string to the console.

TOMORROW: Java: Get the JDK and an IDE, and an Introduction to Object-Oriented Programming...

No comments:

Post a Comment