Help for this page

Select Code to Download


  1. or download this
    # contrived
    my $incAll = map { $_++ };
    ...
    my @data2 = return_some_other_numbers();
    $incAll->(@data);
    $incAll->(@data2);
    
  2. or download this
    sub makeIncr {
      my $incr = $_[0];
      return map { $_ += $incr };
    }