package gui;

import javax.swing.JFrame;

/** The main program for the calculator.
 * @author <Your name here>
 */
public class Calculator {

    /**
     * Create a calculator frame and show it.
     */
    public static void main(String[] args) {
        CalculatorFrame frame = new CalculatorFrame();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.show();
    }
}
