|
Home Hardware Software Shareware Manuals Miscellaneous
| |
Operators
Operators
Each operator or group of operators is precedent over the group below it.
| ^ |
Exponentiation |
| -, + |
Unary negative, positive |
| *, / |
Multiplication, division |
| +,- |
Addition and concatenation, subtraction |
| <,>,=,< =,> =,<> |
Relational tests |
| NOT |
Negates logical statement result |
| AND |
All statements must be true |
| OR |
Only one statement need be true |
|