blob: 21e6f203566064cbd9d7828157ad4108befd0eaf [file] [log] [blame]
//go: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)
}