[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 as the pointer size on the platform. 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 A = 123 2 B = 0x123a 3 C :int = 789