summaryrefslogtreecommitdiff
path: root/sample/tkhello.rb
diff options
context:
space:
mode:
Diffstat (limited to 'sample/tkhello.rb')
-rw-r--r--sample/tkhello.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/sample/tkhello.rb b/sample/tkhello.rb
deleted file mode 100644
index 1ff1403e71..0000000000
--- a/sample/tkhello.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-require "tk"
-
-TkButton.new {
- text 'hello'
- command proc{print "hello\n"}
- pack('fill'=>'x')
-}
-TkButton.new {
- text 'quit'
- command 'exit'
- pack('fill'=>'x')
-}
-Tk.mainloop