Hallo,
also in der Syntax-Beschreibung steht:
<expr> ::= [ NOT ] <logical term> { ( OR|XOR ) <logical term> }
<logical term> ::= <relation> { AND <relation> }Das bedeutet, dass AND stärker bindet, also Vorrang vor OR/XOR hat.
(Weil es Bestandteil des "tiefer-liegenden" bzw. "inneren" <logical term> ist

)
Kannst Du auch leicht anhand eines einfachen Tests überprüfen:
if true or false and false then ! 1 or (0 and 0) = 1
TPWrite "AND - Bindung";
else ! (1 or 0) and 0 = 0
TPWrite "OR - Bindung";
endif
hth
addi