import javax.swing.JOptionPane;
/*
 * DisplayHello1.java
 *
 * Created on January 3, 2005, 4:39 PM
 */

/**
 *
 * @author Bill Kraynek
 */
public class DisplayHello1 {
    
    /** Creates a new instance of DisplayHello1 */
    public DisplayHello1() {
	// This line prints to the console
        System.out.println("Hello World!");
 	// This line creates a small window and prints in the window
        JOptionPane.showMessageDialog(null,"Hello World!");
    }
    
    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        new DisplayHello1();
    }
    
}

