\= Operator

Divides the value of a variable by the value of an expression, then changes the variable to the integer result.

Syntax

variable \= expression

Parts

variable
A numeric variable or property.
expression
A numeric expression

Instructions

The two statements that follow operate the same.

variable \= expression
variable = variable \ expression

Examples

result = 10
result \= 3
After run
result3

See also