Welcome to tutorial number 4 in our Golang tutorial series. Please read Golang tutorial part 3: Variables of this series to learn about variables. The following are the basic data types available in Go bool Numeric Types int8, int16, int32, int64, int uint8, uint16, uint32, uint64, uint float32, float64 complex64, complex128 byte rune string bool bool type represents a boolean. It can either be a true or false value. 1package main 2 3import "fmt" 4 5func main() { 6 a := true 7 b := false 8 fmt.