higher precedence operators list first
exponentiation **, right-to-left associativity
-2**2**3
same as
-2**(2**3)
unary operator, + for positive and - for negative
multiplication * and division /
addition + and subtraction -
comparison
operator | meaning |
.eq. | = |
.nq. | != |
.gt. | > |
.lt. | < |
.ge. | >= |
.le. | <= |
logical negation
.not.
logical and
.and.
logical or
.or.