Help for this page

Select Code to Download


  1. or download this
    # 1.
    ... map { ... } @array;
    ...
    # 14. Blame [tye]
    for( pipe(IN,OUT) && do { local $,=$/; print IN @array,'' } && <OUT> )
    + { ... }
    
  2. or download this
    my @array;
    $_++ foreach @count;
    
  3. or download this
    my @array=map $_+1,@count;