Wiki

Clone wiki

symja_android_library / Symbols / PreIncrement

PreIncrement (Operator ++() )

PreIncrement(variable)
increment the variable by 1 and return the new value.

Examples

>>> $x=10; ++$x
11

Updated