Exercise: count words
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
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
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