github.com/traefik/yaegi@v0.15.1/_test/a27.go (about) 1 package main 2 3 import "fmt" 4 5 func main() { 6 a := [...]string{"hello", "world"} 7 fmt.Printf("%v %T\n", a, a) 8 } 9 10 // Output: 11 // [hello world] [2]string