Sign in
go
/
website
/
fb64aa77f925610ac46c813d080d1f01f3827ece
/
.
/
tour
/
content
/
moretypes
/
exercise-maps.go
blob: e48e48a32278d53b5c7acd685f127d0d6df08a74 [
file
] [
log
] [
blame
]
// +build OMIT
package main
import (
"golang.org/x/tour/wc"
)
func WordCount(s string) map[string]int {
return map[string]int{"x": 1}
}
func main() {
wc.Test(WordCount)
}