Hello World Java Program learning

/*
 *Define a file archive,After compiling and executing,will appear on the screen Hello,WORLD!
 */
public classHelloWorld{
    public static void main(String[] args){
	     System.out.println( "Hello,World!" );
	}
}
/* End of file archive */