RosettaCodeData/Task/Loops-Foreach/Tcl/loops-foreach-2.tcl
2023-07-01 13:44:08 -04:00

3 lines
45 B
Tcl

foreach {x y} {1 2 3 4} {
puts "$x,$y"
}