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