Skip to content

Instantly share code, notes, and snippets.

@lishunli
lishunli / HelloWorld.java
Created March 14, 2012 14:34
Hello World
/**
*
* @author ShunLi
*/
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}