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

4 lines
63 B
Text
Raw Permalink Normal View History

2015-11-18 06:14:39 +00:00
A := [1, 2, 3];
B := [3, 4, 5];
print(A + B); -- [1 2 3 3 4 5]