gitlab.com/ethan.reesor/vscode-notebooks/yaegi@v0.0.0-20220417214422-5c573557938e/_test/var7.go (about) 1 package main 2 3 import ( 4 "fmt" 5 ) 6 7 type T struct { 8 Name string 9 } 10 11 var m = make(map[string]*T) 12 13 func main() { 14 fmt.Println(m) 15 } 16 17 // Output: 18 // map[]