# Word Count Write a program that given a string can count the occurrences of each word in that string. ```ruby words = Words.new("olly olly in come free") words.count # => {"olly" => 2, "in" => 1, "come" => 1, "free" => 1} ``` ## Source The golang tour [view source](http://tour.golang.org)