mirror of
https://github.com/kingomarnajjar/ChatDev.git
synced 2026-07-26 06:37:30 +10:00
9 lines
No EOL
221 B
Python
9 lines
No EOL
221 B
Python
'''
|
|
This is the main file that initializes the calculator GUI.
|
|
'''
|
|
import tkinter as tk
|
|
from calculator import Calculator
|
|
if __name__ == "__main__":
|
|
root = tk.Tk()
|
|
calculator = Calculator(root)
|
|
root.mainloop() |