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