INC
Statement
Windows/Unix
Increments numeric variable by one, or by the amount specified.
Syntax
:
INC(variable [, amount])
INC(I)
INC(I, 10)
Details
:
You can also use the plus plus C-like statement :
DIM i as INTEGER
i = 5
i++
PRINT i