5 lines
146 B
Text
5 lines
146 B
Text
|
|
to combine-arrays :a1 :a2
|
||
|
|
output listtoarray sentence arraytolist :a1 arraytolist :a2
|
||
|
|
end
|
||
|
|
show combine-arrays {1 2 3} {4 5 6} ; {1 2 3 4 5 6}
|