Contents
Syntax
The syntax for
+=(params)
@+=(params)
Description
Note: It is typically faster to use exprtk for arithmetic assignment operators, plus the syntax is nicer.
f++ example
Example of
:=(int, a=10, b=13) :=(string, str="hello") +=(a, b) console(a) +=(str, ", ", "world!") console(str)
n++ example
Example of
@:=(int, a=10, b=13) @:=(string, str="hello") @+=(a, b) @console(a) @+=(str, ", ", "world!") @console(str)