exercism/java/word-count/README.md

19 lines
271 B
Markdown
Raw Normal View History

2016-08-13 23:20:14 +00:00
# Word Count
Write a program that given a phrase can count the occurrences of each word in that phrase.
For example for the input `"olly olly in come free"`
```plain
olly: 2
in: 1
come: 1
free: 1
```
## Source
The golang tour [view source](http://tour.golang.org)