Update boom.py/boom.py

This commit is contained in:
2025-11-03 19:07:06 +00:00
parent 282d34fe03
commit b630894847

View File

@@ -1,5 +1,5 @@
import tkinter as tk
class app:
class App:
def __init__(self, root):
self.root = root
root.title("oh hey your computer go boom now")
@@ -14,6 +14,7 @@ class app:
def main():
root = tk.Tk()
app = app(root)
app.idk()
root.mainloop()
if __name__ == "__main__":