Help for this page

Select Code to Download


  1. or download this
    foreach my $element ( @array ) { ...... }
    
  2. or download this
    my @newlist = map { ....... } @array;
    
  3. or download this
    foreach my $idx ( 0 .. $#array ) {
        #do something with $array[$idx];
    }
    
  4. or download this
    my @newlist = map { # do something with $array[$_] } 0 .. $#array;
    
  5. or download this
    package IndexedArray;
    
    ...
    
    1;
    
  6. or download this
    
    use strict;
    ...
                  . "].\n";
        }
    }