Help for this page

Select Code to Download


  1. or download this
    my @array = map { STMT* EXPR } LIST;
    
  2. or download this
    my @array;
    for (LIST) {
       STMT*
       push @array, EXPR;
    }
    
  3. or download this
    my @array = grep EXPR, LIST;
    
  4. or download this
    my @array;
    for (LIST) {
    ...
          push @array, $_;
       }
    }