Go Data Types
Contents
String
Bool
Numeric Types
signed integers: int8, int16, int32, int64, and int
unsigned integers: uint8, uint16, uint32, uint64, and uint
uintptr
floating point numbers: float32 and float64
complex numbers: complex64 and complex128
byte is an alias to uint8, and rune is an alias to int32.
Pointer
Struct
Function
Container Types
array
slice
map
Channel