Hello world를 출력하는 JAVA 코드

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