HelloWorld.java
1    package greetings;
2    
3    
4    
5        /* 
6        * Traditional starter program 
7         */
8    
9        public class HelloWorld {
10   
11           public static void main(String[] args)  {
12               System.out.println("Hello world! " );
13           }
14       }
15   
16