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