Wiki

Clone wiki

symja_android_library / Symbols / Decrement

Decrement (Operator ()-- )

Decrement(variable)
return the current value assigned to the variable and decrement the variable by 1.

Examples

>>> $x=10; $x-- 
10
>>> $x 
9

Updated