
/*
 * DisplayHello.java
 *
 * Created on January 3, 2005, 4:36 PM
 */

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

