OPERATORS

Operators:
+		; Addition
-		; Subtraction
*		; Multiply
/		; Division
^		; Power

MOD		; Modulo
DIV		; Division

==		; Equal
!=		; Not equal
<		; Less than
>		; Higher than
<=		; Less than or equal
>=		; Higher than or equal

EQ		; Equal
NE		; Not equal
LT		; Less than
GT		; Greater than
LE		; Less than or equal
GE		; Greater than or equal

( )		; Brackets (increasing priority)

Examples:
a = 100			; Assign 100 to an equate
b = (100 + 2) * 6	; 100 + 2 will be calculated first, then multiplied with 6
c = 100 + 2 * 6		; 100 will be added with 2 * 6 (= 100+12)
d = 10 mod 3		; Modulo
e = 10 div 3		; Division
f = 5 ^ 3		; Power 5*5*5