"""
------------------------------------------------------------------------------
--                                                                          --
--                              CLASS PROJECT                               --
--                                                                          --
--                        C A L C U L A T O R . P Y                         --
--                                                                          --
------------------------------------------------------------------------------
-- <Your Name Here>                                                         --
--                                                                          --
-- <Class Name Here>                                                        --
--                                                                          --
------------------------------------------------------------------------------
-- This is is the 'main' subroutine for the calculator project.             --
--                                                                          --
------------------------------------------------------------------------------
"""

import calcui
import Tkinter

if __name__ == '__main__':
    root = Tkinter.Tk()
    root.title('Handy Calculator')
    app = calcui.CalculatorFrame(root)
    app.mainloop()
