PickBASIC / FlashBASIC
/= assignment operator
.mdThe /= assignment operator divides a variable by a numeric expression and assigns it to the given variable.
Syntax
var /= num.expExample(s)
This divides the current value
of x by 2 and assigns the result
to x. It is equivalent to: x = x / 2
x /= 2
See also
* arithmetic operator→*= assignment operator→+= assignment operator→- arithmetic operator→-= assignment operator→:= assignment operator→Arithmetic expressions→Arithmetic operators→Assignment→Numeric expressions→Precedence→precision statement→Relational operators→sum() function→\= assignment operator→