Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Integers

Integer values use:

Int

Example:

Int Counter = 0;

Integer arithmetic supports:

Int A = 10;
Int B = 5;

Int Add = A + B;
Int Subtract = A - B;
Int Multiply = A * B;
Int Divide = A / B;

Integer variables can be modified:

Counter = Counter + 1;

Integer values are also used as the underlying storage for Generic list elements in the current implementation.

See Operators for the full list of arithmetic, power, and bitwise operations.


← Previous Next →