Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    for (@{ $x }){
        print "$_\n";
    }
    
  2. or download this
    my $x;
    my @a = map $_, @{ $x };
    
    print ref $x;
    
  3. or download this
    ARRAY