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

/**
 *
 * @author Bill Kraynek
 */
public class HelloWorlds {
       
    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
 	// This saves the message in the String object named hello
        String hello = "Hello World!";
        JOptionPane.showMessageDialog(null,hello);
        JOptionPane.showMessageDialog(null,hello);
        JOptionPane.showMessageDialog(null,hello);
        JOptionPane.showMessageDialog(null,hello);
    }
    
}

