| \ | Index Level | \ |
| Syntax | variable \= num.expression |
| Category | BASIC |
| Type | Operator, Assignment |
| Description | is an assignment operator which divides a variable by a given numeric expression and assigns the remainder (modulo) to the variable. |
| Options | |
| See Also | num.expression arithmetic operators PRECISION arithmetic expressions assignment precedence MOD SUM operators - *= += -= /= := * \ |
| Example |
x \= 2
This divides the current value of "x" by "2" and assigns the remainder to "x". This is equivalent to: x = x \ 2 |
| Warnings | |
| Compatibility | D3 7.0 AP |
| \ | Index Level | \ |