From 34f6b14fe59c6d0b411295bfba7ee8caf13b99d9 Mon Sep 17 00:00:00 2001 From: "(no author)" <(no author)@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> Date: Fri, 28 Oct 2005 17:08:03 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'v1_8_4_preview1'. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/tags/v1_8_4_preview1@9478 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/tk/sample/tcltklib/lines2.rb | 54 ---------------------------------------- 1 file changed, 54 deletions(-) delete mode 100644 ext/tk/sample/tcltklib/lines2.rb (limited to 'ext/tk/sample/tcltklib/lines2.rb') diff --git a/ext/tk/sample/tcltklib/lines2.rb b/ext/tk/sample/tcltklib/lines2.rb deleted file mode 100644 index e459589f50..0000000000 --- a/ext/tk/sample/tcltklib/lines2.rb +++ /dev/null @@ -1,54 +0,0 @@ -#! /usr/local/bin/ruby - -require "tk" - -def drawlines() - print Time.now, "\n" - - for j in 0 .. 99 - print "*" - $stdout.flush - if (j & 1) != 0 - col = "blue" - else - col = "red" - end - for i in 0 .. 99 -# TkcLine.new($a, i, 0, 0, 500 - i, "-fill", col) - end - end - - print Time.now, "\n" - - for j in 0 .. 99 - print "*" - $stdout.flush - if (j & 1) != 0 - col = "blue" - else - col = "red" - end - for i in 0 .. 99 - TkcLine.new($a, i, 0, 0, 500 - i, "-fill", col) - end - end - - print Time.now, "\n" -# Tk.root.destroy -end - -$a = TkCanvas.new{ - height(500) - width(500) -} - -$b = TkButton.new{ - text("draw") - command(proc{drawlines()}) -} - -TkPack.configure($a, $b, {"side"=>"left"}) - -Tk.mainloop - -# eof -- cgit v1.2.3