Contents
Syntax
The syntax for
++param ++(params)
@++param @++(params)
Description
Note: It is typically faster to use exprtk for incrementing variables, especially with the post-loop code with
f++ example
Example of
- int a=0, b=0
- console(++a)
- console(++(a, b))
n++ example
Example of
- @int a=0, b=0
- @console(@++a)
- @console(@++(a, b))