package main import ( "fmt" ) func main() { var user struct{Name string; Gender int} = "dotcoo" = 1 ("%#v\n", user) }