Operations on arrays
> my @words = < orange lime cherry banana lemon >;
We still have the functional form of many operations:
Display the number of elements
> say elems @words 5 > my $x = pop @words;
I generally prefer the method call form:
> say @words.elems 5 > my $x = @words.pop;