diff options
Diffstat (limited to 'languages/python/app_templates/pytk/app.py')
-rw-r--r-- | languages/python/app_templates/pytk/app.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/languages/python/app_templates/pytk/app.py b/languages/python/app_templates/pytk/app.py new file mode 100644 index 00000000..39f4aa84 --- /dev/null +++ b/languages/python/app_templates/pytk/app.py @@ -0,0 +1,4 @@ +from Tkinter import * +widget = Label(None, text='Hello world!') +widget.pack() +widget.mainloop() |