The For-Select Loop
Let's see how we can combine the `for` and `select` statements in order to communicate over channels in Go.
We'll cover the following...
We'll cover the following...
The for-select loop can be structured as follows:
First, let’s try to loop over something that goes on infinitely.
You might have wondered why the loop did not run infinitely. Well, that’s because I checked for my "Done" signal and returned from the ...