Sign in
go
/
talks
/
067e0d331feee4f8d0fa17d47444db533bd904e7
/
.
/
content
/
2015
/
tricks
/
repeated.go
blob: 88fec4082b6fb2cb3261a659cddad89cb305c02d [
file
]
// +build ignore
package main
// BEGIN OMIT
type Foo struct {
i int
s string
}
var s = []Foo{
{6 * 9, "Question"},
{42, "Answer"},
}
var m = map[int]Foo{
7: {6 * 9, "Question"},
3: {42, "Answer"},
}
// END OMIT
func main() {}