CS1 Standard Demo Page

The following text was written to the standard output stream when the HelloYou.java program was executed from IntelliJ.

Hello, Sean!
	  

HelloYou.java
HelloYou.java
/* 
 * Traditional starter program. 
 */

package greetings;

public class HelloYou
{
    public static void main(String[] args)
    {
        String name = JOptionPane.showInputDialog(null, "Who are you?");
        System.out.println("Hello, " + name + "!");
    }
}