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       public static void main(String[] args) {
11           String name = JOptionPane.showInputDialog(null, "Who are you?");
12           System.out.println("Hello, " + name + " !");
13   
14           /* 
15           *To put a space in between the words you need to put a space in between the quotations 
16           * When typing String ___ the blank is connected to the ("Hello," + ____ + "!") so you can put anything into the blanks as long as it isn't uppercase 
17            */
18       }
19   }
20