[NAME] ALL.dao.type.int [TITLE] Integer Type [DESCRIPTION] int is the built-in primitive data type for integers. By default, its size is the same a s the pointer size on the platform, namely 4 bytes on 32 bits machines and 8 bytes on 64 bits machine. 0.1 Definition 1 DecDigit ::= '0' ... '9' 2 HexDigit ::= DecDigit | 'a' ... 'f' | 'A' ... 'F' 3 4 DecInteger ::= DecDigit + 5 HexInteger ::= ('0x' | '0X') HexDigit + 6 Integer ::= DecInteger | HexInteger 0.2 Examples 1 var A = 123 2 var B = 0x123a 3 var C: int = 789