HelloYou.class
1    //
2    // Source code recreated from a .class file by IntelliJ IDEA
3    // (powered by FernFlower decompiler)
4    //
5    
6    package Greetings;
7    
8    import java.awt.Component;
9    import javax.swing.JOptionPane;
10   
11   public class HelloYou {
12       public HelloYou() {
13       }
14   
15       public static void main(String[] args) {
16           String name = JOptionPane.showInputDialog((Component)null, "Who are you?");
17           System.out.println("Hello, " + name + "!");
18       }
19   }
20