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