Solution 3: Go Concurrency
Let’s solve the challenge set in the previous lesson.
We'll cover the following...
Solution
Here’s the concurrent version of wc(1)
that uses semaphores.
Dimitris, Tsoukalos, 2101112223, 1600665563 Mihalis, Tsoukalos, 2109416471, 1600665563 Jane, Doe, 0800123456, 1608559903
wc.go
Code explanation
Line 9: Import the
semaphore
package. ...