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