All pastes #649618 Raw Edit

Anonymous

public text v1 · immutable
#649618 ·published 2007-08-08 08:20 UTC
rendered paste body
Example one:

do_stuff_to_the_thing(x);
if(x==y){
    do_more_stuff_to_the_thing(x);
}


Example two:

if(do_stuff_to_the_thing(x)){
    if(x==y){
        do_more_stuff_to_the_thing(x);
    }
}