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