RosettaCodeData/Task/Loops-Do-while/Tcl/loops-do-while-3.tcl

6 lines
68 B
Tcl
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
set i 0
while true {
puts [incr i]
if {$i % 6 == 0} break
}