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

3 lines
49 B
Tcl

foreach i {1 2 3} j {a b c} {
puts "$i,$j"
}