summaryrefslogtreecommitdiff
path: root/ext/tk/sample/tcltklib/lines0.tcl
diff options
context:
space:
mode:
author(no author) <(no author)@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-10-28 17:08:03 +0000
committer(no author) <(no author)@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-10-28 17:08:03 +0000
commit34f6b14fe59c6d0b411295bfba7ee8caf13b99d9 (patch)
tree85d2e1d27fde77966788b6924f741189e59faaf4 /ext/tk/sample/tcltklib/lines0.tcl
parent673dcd5ae2cbe7c30dac31c92de3c3ab9eb8a567 (diff)
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
Diffstat (limited to 'ext/tk/sample/tcltklib/lines0.tcl')
-rw-r--r--ext/tk/sample/tcltklib/lines0.tcl42
1 files changed, 0 insertions, 42 deletions
diff --git a/ext/tk/sample/tcltklib/lines0.tcl b/ext/tk/sample/tcltklib/lines0.tcl
deleted file mode 100644
index 8ed3c5e1c1..0000000000
--- a/ext/tk/sample/tcltklib/lines0.tcl
+++ /dev/null
@@ -1,42 +0,0 @@
-#! /usr/local/bin/wish
-
-proc drawlines {} {
- puts [clock format [clock seconds]]
-
- for {set j 0} {$j < 100} {incr j} {
- puts -nonewline "*"
- flush stdout
- if {$j & 1} {
- set c "blue"
- } {
- set c "red"
- }
- for {set i 0} {$i < 100} {incr i} {
-# .a create line $i 0 0 [expr 500 - $i] -fill $c
- }
- }
-
- puts [clock format [clock seconds]]
-
- for {set j 0} {$j < 100} {incr j} {
- puts -nonewline "*"
- flush stdout
- if {$j & 1} {
- set c "blue"
- } {
- set c "red"
- }
- for {set i 0} {$i < 100} {incr i} {
- .a create line $i 0 0 [expr 500 - $i] -fill $c
- }
- }
-
- puts [clock format [clock seconds]]
-# destroy .
-}
-
-canvas .a -height 500 -width 500
-button .b -text draw -command drawlines
-pack .a .b -side left
-
-# eof