Array concatenation: Difference between revisions

(PascalABC.NET)
Line 2,659:
 
=={{header|langur}}==
<syntaxhighlight lang="langur">val .a = [1, 2, 3]
val .b = [7, 8, 9]
val .c = .a ~ .b
writeln .c</syntaxhighlight>
 
{{out}}
1,007

edits