/home/evankemp/NetBeansProjects/CS1/src/greetings/HelloWorld.java |
1 /* 2 * Traditional starter program. 3 */ 4 5 package greetings; 6 7 /** 8 * 9 * @author evankemp 10 */ 11 public class HelloWorld { 12 13 /** 14 * @param args the command line arguments 15 */ 16 public static void main(String[] args) { 17 System.out.println("Hello world!"); 18 } 19 20 } 21