self subtraction

Self subtraction is a short way to write the equivalent line of code:
variable = variable - expression

Syntax:
variable - = expression

Example:
n=10000
while not key(k_esc)
    n - = 10
    prints (n)
wend