#!/local/bin/python
from Tkinter import *
widget = Label(None, text='Hello GUI world!')
widget.pack()
widget.mainloop()
