RosettaCodeData/Task/Loops-For-with-a-specified-step/Tcl/loops-for-with-a-specified-step.tcl
2023-07-01 13:44:08 -04:00

4 lines
107 B
Tcl

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