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