Help for this page

Select Code to Download


  1. or download this
    @result = map SOME_EXPRESSION, @input;
    
  2. or download this
    @TEMP = ();
    foreach $_ (@input) {
      push @TEMP, SOME_EXPRESSION;
    }
    @result = @TEMP;