Please use three goroutines to run 10 times each, and output cat, dog, bird in order
- goroutine 01 -> println("cat")
- goroutine 02 -> println("dog")
- goroutine 03 -> println("bird")
output:
cat
dog
bird
cat
...
use unbuffered channel. see the example.