最简单的helloworld,就是直接在主函数中利用输出 
package com.nodrich.helloworld;

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