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