Integer PRIMITIVE

Language-level Alias - int

The integer type in Julian language. An int type has a value range from -2147483648 (-2^31) to 2147483647 (2^-31 - 1). It can be hard-cast to byte with all digits above the 7th lost; it can also be implicitly cast to float without precision change.

Integer type can participate in arithmetic operations such as '+' and '*' and '/'. It can aslo be concatenated to string value with '+' operator in the literal form of this value.

Integer is a primitive type. Therefore it can only be assigned to a variable with same type or an untyped variable.