mirror of
https://github.com/kennethreitz-archive/pyinstaller.git
synced 2026-06-05 23:50:17 +00:00
9c49517ced
git-svn-id: http://svn.pyinstaller.org/trunk@566 8dd32b29-ccff-0310-8a9a-9233e24343b1
9 lines
100 B
Python
9 lines
100 B
Python
from Tkinter import *
|
|
|
|
root = Tk()
|
|
|
|
w = Label(root, text="Hello, world!")
|
|
w.pack()
|
|
|
|
root.mainloop()
|