RosettaCodeData/Task/Array-concatenation/Lingo/array-concatenation.lingo

10 lines
93 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
a = [1,2]
b = [3,4,5]
repeat with v in b
a.append(v)
end repeat
put a
-- [1, 2, 3, 4, 5]