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