RosettaCodeData/Task/User-input-Text/Tcl/user-input-text-3.tcl

7 lines
133 B
Tcl
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
set input 0
while {$input != 75000} {
puts -nonewline "enter the number '75000': "
flush stdout
set input [gets stdin]
}