4 lines
107 B
Tcl
4 lines
107 B
Tcl
for {set i 2} {$i <= 8} {incr i 2} {
|
|
puts -nonewline "$i, "
|
|
}
|
|
puts "enough with the cheering already!"
|