- or download this
my @array = ( 'one', 'two', 'buckle my shoe', );
my $array_ref = \@array;
- or download this
for ( @$array_ref ) {
...
}
- or download this
print "The third element is $array_ref->[2] \n";
- or download this
print keys %{ $array_ref }; # fatal!