

import javax.swing.*;

public class Basic2 extends JFrame {

   public static void main(String[] args) {
      new Basic2();
   }

   public Basic2() {
      setTitle("Basic Test2!"); //create the window
      setDefaultCloseOperation(EXIT_ON_CLOSE); //quit Java after closing the window
      setSize(200, 200); //set size in pixels
      setVisible(true); //show the window
   }
}
