Help for this page

Select Code to Download


  1. or download this
    my @new_a = map { $_+1 } @a;
    
  2. or download this
    foreach ( map { $_ +1 } @a ) {
     #whatever
    }