import javax.swing.JFrame;

/**
   A main program to show a simple JFrame---similar to the one presented in the
   YouTube video "Java Programming Tutorial-54 GUI with JFrame
   by YouTube user "thenewboston"

   (http://www.youtube.com/watch?v=M1_-sigEPtE)

   This class is similar to the "apple" class in the video.

   @author Youtube user "thenewboston"
   @author Phill Conrad
   @see <a href="http://www.youtube.com/watch?v=M1_-sigEPtE">Youtube Link</a>


 */

public class TriangleGUI {
    public static void main(String[] args) {
	TriangleJFrame tjf = new TriangleJFrame();
	tjf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
	tjf.setSize(400,400);
	tjf.setVisible(true);

    }

}