---Reply to mail from Alexander R. Pruss about stylistic question

> What is proper style for an if() with a long condition?  I think I have
> seen more than one option in the code.  

    Given the choice, I'd rather see:

    if ( shortcondition1 && shortcondition2 ) {
        DoThis()
    }
and
    if ( areallycondition....................................................
         && shortcondition ) {
        DoThis()
    }

My $0.02

---End reply

Christopher R. Hawks
HAWKSoft
-------------------------------------------------------------------------
MSDOS didn't get as bad as it is overnight -- it took over ten years
of careful development.
    -- [EMAIL PROTECTED]





_______________________________________________
plucker-dev mailing list
[EMAIL PROTECTED]
http://lists.rubberchicken.org/mailman/listinfo/plucker-dev

Reply via email to