RosettaCodeData/Task/Loops-For-with-a-specified-step/Tcl/loops-for-with-a-specified-step.tcl
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

4 lines
107 B
Tcl

for {set i 2} {$i <= 8} {incr i 2} {
puts -nonewline "$i, "
}
puts "enough with the cheering already!"