Decrement
Decrement(x)
x--decrements
xby1, returning the original value ofx.
Examples
>> a = 5>> a--5
>> a4Implementation status
- ✅ - full supported
Decrement(x)
x--decrements
xby1, returning the original value ofx.
>> a = 5>> a--5
>> a4