blob: a84642b36e48b2a9a79916eb05c842cbdf0c0b44 [file] [log] [blame]
// +build OMIT
package main
import (
"code.google.com/p/go-tour/wc"
)
func WordCount(s string) map[string]int {
return map[string]int{"x": 1}
}
func main() {
wc.Test(WordCount)
}