package main import "fmt" func main() { var numbers [4]int fmt.Printf("%v\n", numbers) fmt.Printf("%#v\n", numbers) }