8 lines
128 B
Rexx
8 lines
128 B
Rexx
|
|
x = .array~of("a", "b", "c")
|
||
|
|
y = .array~of("A", "B", "C")
|
||
|
|
z = .array~of(1, 2, 3)
|
||
|
|
|
||
|
|
loop i = 1 to x~size
|
||
|
|
say x[i]y[i]z[i]
|
||
|
|
end
|