Arrays

Arrays are fixed in size.

func main() {
	a := [7]int{0, 1, 2, 3, 4, 5, 6}

	fmt.Println(a)
}