CS1 Standard Demo Page

The following text was written to the standard output stream when the /* * */ package greetings; import javax.swing.JOptionPane; public class HelloYou { public static void main(String[] args) { String name = JOptionPane.showInputDialog(null, "Who Are You?"); System.out.println("Hello, " +name +"!"); } } program was executed from IntelliJ.

Hello, Dylan!