Update boom.py/boom.py

This commit is contained in:
2025-11-03 19:08:20 +00:00
parent b630894847
commit 8bedea387a

View File

@@ -13,8 +13,8 @@ class App:
tk.Label(win, text="Say bye to your computer",fg="red", font=("Courier", 24, "bold")).pack()
def main():
root = tk.Tk()
app = app(root)
app.idk()
app = App(root)
App.idk()
root.mainloop()
if __name__ == "__main__":