Operators

Operator
Description
+
Adds two values together
&
Concatenates two strings
-
Subtracts two values
/
Divides two values
^
Raises the left value to the power of the right value (2 ^ 3 = 8)
mod
Modulo (8 mod 3 = 2)
=
Equals
<
Less than
<=
Less than or equal
>
Greater than
>=
Greater than or equal
<>
Not equal
( )
Precedence
not
Logical not
and
Logical and
or
Logical or