Skip to content

Instantly share code, notes, and snippets.

@tacahiroy
Created February 22, 2019 00:52
Show Gist options
  • Select an option

  • Save tacahiroy/ea97bf27ac65fe011216566129f27abc to your computer and use it in GitHub Desktop.

Select an option

Save tacahiroy/ea97bf27ac65fe011216566129f27abc to your computer and use it in GitHub Desktop.
A goroutine example
ch := make(chan byte, 1)
for p := range projs {
go func() {
r := getData(p)
fmt.Println(r)
ch <- 1
}
<-ch
}()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment