HelloYou.java
1    
2    /* 
3    * Variant of the traditional starter program that features a widget 
4     */
5    
6    package greetings;
7    
8    import javax.swing.JOptionPane;
9    
10   public class HelloYou {
11   
12     public static void main(String[] args) {
13         String name = JOptionPane.showInputDialog(null, "Who are you?");
14         System.out.println("Hello, " + name + "!");
15     }
16   
17   }
18