Help for this page

Select Code to Download


  1. or download this
    my $rv1 = f( $o->next );
    my $rv2 = g( $o->next );
    my $x = $rv1 + $rv2;
    
  2. or download this
    my $x = $i + ++$i;
    
  3. or download this
    $x = f( g() + h() ) * p( q() - r() );
    
  4. or download this
    $x = p( q() - r() ) * f( g() + h() );
    
  5. or download this
    my $temp1 = p( q() - r() );
    my $temp2 = f( g() + h() );
    $x = $temp1 * $temp2;
    
  6. or download this
    $temp1 = q() - r();
    $temp2 = g() + h();
    $x = f( $temp2 ) * p( $temp1 );