Skip to content

Instantly share code, notes, and snippets.

@chrisgoffinet
Created August 16, 2018 16:04
Show Gist options
  • Save chrisgoffinet/8d83f74b1bb87fc14c0958ae6d0c014f to your computer and use it in GitHub Desktop.
Save chrisgoffinet/8d83f74b1bb87fc14c0958ae6d0c014f to your computer and use it in GitHub Desktop.
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