Help for this page

Select Code to Download


  1. or download this
    sub foo {
       #  vvvv Temp array
    ...
       @ret[0..$#ret];
    #  ^^^^^^^^^^^^^^ list 3
    }
    
  2. or download this
    sub foo {
       map {
    ...
          $whatever;
       } 0..$#ret;
    }