Exercise: Buzz Game
Let's implement a buzz game using the tools we have learnt so far!
In the code below, you will find two goroutines which represent our players and send messages over channels signaling Buzz
to the main routine. Now the problem with the code below is that ...