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