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