Help for this page

Select Code to Download


  1. or download this
            local @_ = ($_[$i],$_[$i+1]);
            $code->(@_) and push @rv, @_;
    
  2. or download this
            my @args = ($_[$i],$_[$i+1]);
            $code->(@args) and push @rv, @args;
    
  3. or download this
            local @_ = ($_[$i],$_[$i+1]);
            &$code and push @rv, @_;