operators

operators


OPEN Index Level OR
Syntax
Category BASIC
Type Operator, Relational
Description Operators are reserved characters (and combinations of adjacent characters): * ! & = # - + / ^ < > \ [ ] ( ) and may be referenced individually by their respective symbol.

Expressions are formed by combining operators with other expressions.

When an expression is encountered as part of a FlashBASIC program statement, it is evaluated by performing the operations specified by each of the operators on the adjacent operands.

Each operator has a precedence rating and, in any given expression, the highest precedence operation is performed first. (0 is the highest precedence and 8 is the lowest). If there are two or more operators with the same precedence or if an operator appears more than once, the leftmost operation is performed first.
Options
See Also > ^ special characters arithmetic expressions precedence PRECISION LT < \= EXP - = *= += -= /= LE ! + , (comma) * * \
Example
Warnings
Compatibility D3 7.0 AP R83
OPEN Index Level OR