Array concatenation: Difference between revisions

Content added Content deleted
Line 2,196: Line 2,196:
=={{header|Perl 6}}==
=={{header|Perl 6}}==
{{works with|rakudo|2015-10-01}}
{{works with|rakudo|2015-10-01}}
#the prefix:<|> operator (called "slip") flattens Arrays
# the prefix:<|> operator (called "slip") flattens Arrays
<lang perl6>
<lang perl6>
my @array3 = |@array1, |@array2;
my @array3 = |@array1, |@array2;