/*
 * PrintlnHello1.java
 *
 * Created on January 3, 2005, 4:35 PM
 */

/**
 *
 * @author Bill Kraynek
 */
public class PrintlnHello1 {
    
    /** Creates a new instance of PrintlnHello1 */
    public PrintlnHello1() {
	// This line prints to the console
        System.out.println("Hello World!");
    }
    
    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        new PrintlnHello1();
    }
    
}

