Help for this page
my $rv = func( $i, ++$i, $i+2 );
# either this: $rv = func( $i, $i+1, $i+2 ); $i++; # or this: $rv = func( $i, $i+1, $i+3 ); $i++;