Reference for the BALTENSPERGER programming language, an art project of Stefan Baltensperger

Name

+= (add assign)

Examples
Ganzizahl a = 50;
Ganzizahl b = 23;
a += b; // sets "a" to 73
Description Combines addition with assignment. The expression a += b is equivalent to a = a + b.
Syntax
value1 += value2
Parameters
value1 Ganzizahl or Komazahl
value2 any numberical value the same datatype as value1
Usage Web & Application
Related = (assign)
+ (add)
-= (subtract assign)
Stefan Baltensperger 2009

Creative Commons License