Created
August 16, 2018 16:04
-
-
Save chrisgoffinet/8d83f74b1bb87fc14c0958ae6d0c014f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"sync" | |
"time" | |
) | |
func main() { | |
var count = 100 | |
var wg sync.WaitGroup | |
results := make(chan int, count) | |
wg.Add(count) | |
for i := 0; i < count; i++ { | |
go func(v int) { | |
defer wg.Done() | |
time.Sleep(1 * time.Second) | |
results <- v | |
}(i) | |
} | |
wg.Wait() | |
for i := 0; i < count; i++ { | |
result := <-results | |
fmt.Println(result) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment