Help for this page

Select Code to Download


  1. or download this
    my $rv = func( $i, ++$i, $i+2 );
    
  2. or download this
       # either this:
    $rv = func( $i, $i+1, $i+2 );  $i++;
    
       # or this:
    $rv = func( $i, $i+1, $i+3 );  $i++;