RosettaCodeData/Task/Array-concatenation/LDPL/array-concatenation.ldpl
2023-09-01 09:35:06 -07:00

13 lines
191 B
Text

include "std-list.ldpl"
data:
arr1 is number list
arr2 is number list
procedure:
push 1 to arr1
push 2 to arr1
push 3 to arr2
push 4 to arr2
append list arr2 to list arr1
display list arr1