自己加算
自己加算は以下のコード行に相当する略記法です。
variable = variable + expression
文法:
variable
+=
expression
用例:
n=0
while not key(k_esc)
n
+=
2
prints (n)
wend