<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 Basic1 {
   public static void main(String[] args) {
      JFrame f = new JFrame("Basic Test1!"); //create the window
      f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); //quit Java after closing the window
      f.setSize(200, 200); //set size in pixels
      f.setVisible(true); //show the window
   }
}
</pre></body></html>