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