Pages

Monday, July 4, 2011

Hello World

Welcome to Code and Learn site. The intent of this site is to post simple samples that enable you to understand complex algorithms, puzzles and datastructure.

Here is the first sample post that it true to the coding spirit, As the name suggests, Its just a "Hello World"

public class HelloWorld {

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

2 comments: