Exercise: count words



examples/count-words-skeleton/count_words_skeleton.go
package main

import "fmt"

func main() {
    var text = "hello world how are you world and how are you"
    fmt.Println(text)

}

Expected output:


hello: 1
world: 2
how: 2
are: 2
you: 2
and: 1