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