Primitive data type for 8-bit signed integers.
You can use this data type to store integers that are between -128 and 127 in value. That is, you can use
int8 to store signed integers that can be represented in 8 bits. The default value for an
int8 is 0 (zero).
See also:
int,
int16,
int32,
int64,
uint8,
uint16,
uint,
uint64.