* | Index Level | + |
Syntax | variable *= num.expression |
Category | BASIC |
Type | Operator, Assignment |
Description | an assignment operator which multiplies a given numeric expression and assigns it to the given variable. |
Options | |
See Also | += -= - num.expression PRECISION precedence SUM /= := operators arithmetic expressions \= assignment arithmetic operators * |
Example |
x *= 2
Multiplies 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 | + |