/home/evankemp/NetBeansProjects/CS1/src/greetings/HelloYou.java
 1 /*
 2  * Variant of the traditional starter program that features a widgit.
 3  */
 4 package greetings;
 5 
 6 import javax.swing.JOptionPane;
 7 
 8 /**
 9  *
10  * @author evankemp
11  */
12 public class HelloYou {
13 
14     /**
15      * @param args the command line arguments
16      */
17     public static void main(String[] args) {
18         String name = JOptionPane.showInputDialog(null, "Who are you?");
19         System.out.println("Hello, " + name + "!");
20     }
21     
22 }
23