Samples
Samples
exercise-maps
Language: Gold, Platform: Echoes, Category: Tour of Go
https://github.com/remobjects/ElementsSamples/tree/master/Gold/Echoes/Tour of Go/exercise-maps
-
exercise-maps.Echoes
-
References
- #
- ..\Tour\Tour.Echoes.elements
- Source Files
-
Other Files
-
References
exercise-maps.go
// Ignored build directive: +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)
}
