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