Array concatenation: Difference between revisions

Content added Content deleted
(Added XPL0 example.)
(→‎Insitux: implementation)
Line 2,269: Line 2,269:
let B be {4, 5, 6};
let B be {4, 5, 6};
add B to A;</syntaxhighlight>
add B to A;</syntaxhighlight>

=={{header|Insitux}}==
<syntaxhighlight lang="insitux">(into [1 2 3] [4 5 6])</syntaxhighlight>

<syntaxhighlight lang="insitux">(.. vec [1 2 3] [4 5 6])</syntaxhighlight>


=={{header|Ioke}}==
=={{header|Ioke}}==