DECStatementWindows/Unix

Decrements numeric variable by one, or by the amount specified.

Syntax: DEC(variable [, amount])
DEC(I)
DEC(I, 10)

Details:
You can also use the minus minus C-like statement : 
DIM i  as INTEGER
i = 5
i--
PRINT i