Help for this page

Select Code to Download


  1. or download this
    foo($bar,$baz,@qux);
    
    ...
      my @qux = @_;
      # or my($bar,$baz,@qux)=@_;
    }
    
  2. or download this
    foo(\@arr1,\@arr2);
    
    ...
      my @arr1=@{+shift};
      my @arr2=@{+shift};
    }