Help for this page
my $r_array = [ 'inky', 'blinky', 'blu' ];
@{ $r_array }
for ( @{ $r_array } ) { print "$_\n"; }
for ( @$r_array )