Sign in
go
/
tour
/
45a20b0d69ef2b06d2edfd97210a0df9ffd7f829
/
.
/
content
/
moretypes
/
exercise-maps.go
blob: e48e48a32278d53b5c7acd685f127d0d6df08a74 [
file
]
// +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)
}