summaryrefslogtreecommitdiffstats
path: root/languages/python/app_templates/pytk/app.py
blob: d86508cf12afa61afd8158d884fda8fc97828239 (plain)
1
2
3
4
from tkinter import *
widget = Label(None, text='Hello world!')
widget.pack()
widget.mainloop()