```go type Target struct { Name string Path string Date time.Time } func main() { ^Target{Name, Path} // equivalent []string{"Name", "Path"} ^Target{}.Name // equivalent "Name" } ``` ### Good point - compatible with Go 1.x - just syntactic sugar - refactor friendly - avoid typo