Helloworld

用java写helloworld

1
2
3
4
5
public class Test01 {
public static void main(String[] args){
System.out.println("hello world");
}
}