[Java] Hello World

Create 1 project name is then created java_helloworld 1 file *.java (My main.java file) and write code as follows:

class java_helloworld //trùng với tên của project
{
	public static void main (String [] agrs)
	{
		System.out.println("Hello World !");
	}
}

Finished the run come !

Screenshot from 2013-05-13 23:52:26