13 lines
191 B
Text
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
|