Help for this page

Select Code to Download


  1. or download this
        $x = f($i) + g(1+$i); $i+=1;
    
  2. or download this
        $i+=1; $x = f($i-1) + g();
    
  3. or download this
        my $t = $i++; $x = f($t) + g($i);