RosettaCodeData/Task/Array-concatenation/M2000-Interpreter/array-concatenation-1.m2000

5 lines
69 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
a=(1,2,3,4,5)
b=Cons(a, (6,7,8),a)
Print b
1 2 3 4 5 6 7 8 1 2 3 4 5