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