Wiki

Clone wiki

symja_android_library / Symbols / PreDecrement

PreDecrement (Operator --() )

PreDecrement(variable)
decrement the variable by 1 and return the new value.

Examples

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

Updated