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