package main import "fmt" func main() { x1 := [4]int{1, 2, 3, 4} x2 := [4]int{1, 2, 3, 4} fmt.Println(x1 == x2) }