Help for this page

Select Code to Download


  1. or download this
    my $r_array = [ 'inky', 'blinky', 'blu' ];
    
  2. or download this
    @{ $r_array }
    
  3. or download this
    for ( @{ $r_array } )
    {
        print "$_\n";
    }
    
  4. or download this
    for ( @$r_array )