Showing posts with label java basics. Show all posts
Showing posts with label java basics. Show all posts

Tuesday, September 12, 2006

Hello World!

Hi, this is my first post in this weblog. I will be posting some good stuff about java in this weblog. To get started, let me write this simple Hello World! program for you.

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