<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">

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
   }
}
</pre></body></html>