Help for this page

Select Code to Download


  1. or download this
    sub inc_list {
     $_++ for @_;
    ...
    my @arr = (1, 2);
    inc_list(@arr);
    print "@arr\n"; # prints "2 3" (untested)