summaryrefslogtreecommitdiffstats
path: root/Demo/tkinter/guido/hello.py
diff options
context:
space:
mode:
Diffstat (limited to 'Demo/tkinter/guido/hello.py')
-rw-r--r--Demo/tkinter/guido/hello.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/Demo/tkinter/guido/hello.py b/Demo/tkinter/guido/hello.py
deleted file mode 100644
index f10fb7a..0000000
--- a/Demo/tkinter/guido/hello.py
+++ /dev/null
@@ -1,17 +0,0 @@
-# Display hello, world in a button; clicking it quits the program
-
-import sys
-from tkinter import *
-
-def main():
- root = Tk()
- button = Button(root)
- button['text'] = 'Hello, world'
- button['command'] = quit_callback # See below
- button.pack()
- root.mainloop()
-
-def quit_callback():
- sys.exit(0)
-
-main()