santiago, i haven't seen the term used yet, but what you are describing is called operator precedence. it is more commonly encountered in math-with-numbers, where evaluating the following has only one correct result:
2 + 3 * 9 + 5 since boolean algebra isn't generally taught except to CS students, boolean operator precedence is not commonly known, but it exists just the same. generally, the precedence is 1. parentheses 2. AND 3. OR so the only "correct" interpretation is ( 1 && 0 ) || 1 || ( 0 && 0 ) ________________________________________________________________ Welcome to the Interaction Design Association (IxDA)! To post to this list ....... [EMAIL PROTECTED] Unsubscribe ................ http://www.ixda.org/unsubscribe List Guidelines ............ http://www.ixda.org/guidelines List Help .................. http://www.ixda.org/help
