레이블이 hello world인 게시물을 표시합니다. 모든 게시물 표시
레이블이 hello world인 게시물을 표시합니다. 모든 게시물 표시

2015/05/22

test


#include
main()
{
printf("Hello World");
return;
}

package test;

public class Test {
public static main(String...args) {
System.out.println("Hello world");
}
}