3 lines
91 B
Text
3 lines
91 B
Text
for (i, j, k) in zip(('a', 'b', 'c'), ('A', 'B', 'C'), (1, 2, 3))
|
|
println(i, j, k)
|
|
end
|