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