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