RosettaCodeData/Task/Loops-Do-while/Tcl/loops-do-while-3.tcl
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

5 lines
68 B
Tcl

set i 0
while true {
puts [incr i]
if {$i % 6 == 0} break
}