This commit is contained in:
Xevion
2019-07-25 22:21:56 -06:00
parent 4d47e92610
commit 5948e26c4e
25 changed files with 1139 additions and 0 deletions

7
hello.py Normal file
View File

@@ -0,0 +1,7 @@
from tkinter import *
root = Tk()
w = Label(root, text="Hello World!")
w.pack()
root.mainloop()