Assignment 42: A Boring Window

Code

    /// Name: Ryan McAteer
    /// Period: 5
    /// Program Name: A Boring Window
    /// File Name: Assignment42java
    /// Date Finished: 10/19/15
    
    import javax.swing.*;
    
    public class Assignment42 extends JFrame
    {
        public static void main ( String[] args )
        {
            JFrame f = new Assignment42();
            f.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
            f.setSize(300, 200);
            f.setVisible(true);
        }
    }
            

          
           
           
    

Picture of the output

This should work