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

Name

-= (subtract assign)

Examples
Ganzizahl a = 50;
Ganzizahl b = 23;
a -= b; // sets "a" to 27
Description Combines subtraction with assignment. The expression a -= b is equivalent to a = a - b.
Syntax
value1 -= value2
Parameters
value1 Ganzizahl or Komazahl
value2 Ganzizahl or Komazahl
Usage Web & Application
Related += (add assign)
- (minus)
Stefan Baltensperger 2009

Creative Commons License