Perl 6 Perl 6 Lists and Arrays vivified #13

Scalar arrays ("arrayrefs")

No special referencing syntax needed

> my @words = < orange lime cherry banana lemon >;

# create a reference to @words in $x
> my $x = @words;

> @words.push('camelia'); 
> say $x.elems;
6
Copyright © 2012
http://www.pmichaud.com/2012/pres/