Operator Signs

Operator signs are the letters, or sets of letters that are used to define operators.

The full list of Fore operator signs is shown below. Tables are arranged in descending operator priority:

Unary Operators

Operator sign Brief description
+ Unary plus
- Unary minus
NOT Logical NOT

Arithmetic Operators

Operator sign Brief description
+ Summation
- Subtraction
* Multiplication
/ Division
DIV Integer division
MOD Integer division remainder

Relation Operators

Operator sign Brief description
< Less
> Greater
<= Less or equal
>= Greater or equal
= Equal
<> Greater or less (not equal)

Logical Operators

Operator sign Brief description
AND Logical AND
OR Logical OR
XOR Exclusive OR

Operations with Objects

Operator sign Brief description
NEW Object creation
AS Object conversion
IS Type check

See also:

Fore Dictionary