/****************************************************************** * Program 0: Hello World * * Programmer: * * Due Date: August 31, 2005 * * Class: COMP 14 Instructor: Swaha Miller * Section: 01 * * Pledge: I have neither given nor received unauthorized aid * on this program. (signature on file) * * Description: This program prints out a greeting to the world. * * Input: None * * Output: A friendly greeting * ******************************************************************/ public class HelloWorld { public static void main(String[] args) { System.out.println ("Hello World!"); } }