Integer

Integer literals are 32 bit decimal (base 10) values. A decimal integer literal is a string of decimal digits (0-9).

 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 

An Integer literal is always of type Integer . If an Integer is of insufficient size to hold the value represented by the literal, an error is generated. The upper limit is the standard limit of the host machine, but not less than the range between -2^31-1 to +2^31-1 (-2147483647 to 2147483647).