Showing posts with label hello world. Show all posts
Showing posts with label hello world. Show all posts

Sunday, 7 March 2010

Hello World!

import java.io.*;

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