Tuesday, January 25, 2011

Hello world!

Let’s start…..

We will start with simple program…. “Hello world”.

class Greeter{

public static void main(String[] args){

System.out.println("Hello World!");

}

}


This class just prints hello world on the screen.

To compile:

javac Hello.java

To execute:

java Hello


Output: Hello World!

No comments: