Assignemnt #42 and A Boring Window

Code

    ///Name: Luke Shin
    ///Period: 7
    ///Project Name: Window
    ///File Name: Window.java
    ///Date: 11/08/2015
    
    import javax.swing.*;
    
    public class Window extends JFrame {
        public static void main(String[] args){
            JFrame f = new Window();
            f.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE);
            f.setSize(300, 200);
            f.setVisible(true);
        }
    }
    

Picture of the output

Assignment 42