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