Home | History | Annotate | Download | only in issue144
      1 public class HelloWorld {
      2 
      3     static String hw="Hello world";
      4 
      5     public static void main(String[] args) {
      6         System.out.println(hw);
      7     }
      8 }