M
MistryMan4000
[Note: parts of this message were removed to make it a legal post.]
How do I make two rules with equal precedence. The obvious example is
true||false&&false
should return false because the true||false is evaluated first, then &&false.
but also
true&&false||true
should return true because true&&false is false, but then the ||true is evaluated.
How do I make two rules with equal precedence. The obvious example is
true||false&&false
should return false because the true||false is evaluated first, then &&false.
but also
true&&false||true
should return true because true&&false is false, but then the ||true is evaluated.