Inc |
Top Previous Next |
Prototype
Inc(intNumber)
Description
Increments a variable passed as parameter
Parameters
IntNumber: integer value to increase by 1.
Returned value
None.
Notes
None.
Example
// Initialize a variable Counter:=10; // Increment it: now the value is "11" Inc(Counter); |