Help for this page

Select Code to Download


  1. or download this
    foreach my $i ($ref->@a) {
        print $i;           # I want to see the content of the array, this
    + gave me an error.
    }
    
  2. or download this
    foreach my $i ( @{$ref}{@a} ) {
        print $i;
    }
    
  3. or download this
    foreach my $i ( @a ) {
        print $i;
    }