self addition

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

Syntax:
variable += expression

Example:
n=0
while not key(k_esc)
    n += 2
    prints (n)
wend