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

/**
 *
 * @author Bill Kraynek
 */
public class HelloWorlds1 {
    
    /** Creates a new instance of HelloWorlds1 */
    public HelloWorlds1() {
    }
    
    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        // This saves the message in the String object named hello
        // Note the end of line character \n
        String hello = "Hello World!\n";
        hello = hello+hello;
        hello = hello+hello+hello+hello;
        JOptionPane.showMessageDialog(null,hello);
	System.out.println(hello);
    }
    
}

