import javax.swing.*;

public class HelloGUI extends JFrame {
  public HelloGUI() {
    super("Hello World GUI");
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    
    getContentPane().add(new JLabel("Hello, World"));
    pack();
  }

  public static void main(String[] args) {
    new HelloGUI().setVisible(true);
  }
}
