RosettaCodeData/Task/Array-concatenation/SETL/array-concatenation.setl

4 lines
63 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
A := [1, 2, 3];
B := [3, 4, 5];
print(A + B); -- [1 2 3 3 4 5]