Skip to content

Instantly share code, notes, and snippets.

@rogerwelin
Created September 12, 2018 18:53
Show Gist options
  • Select an option

  • Save rogerwelin/4e8d81c50082f254d52c3c381e53ef69 to your computer and use it in GitHub Desktop.

Select an option

Save rogerwelin/4e8d81c50082f254d52c3c381e53ef69 to your computer and use it in GitHub Desktop.
for _, ph := range greeks {
wg.Add(1)
go func(greek string) {
defer wg.Done()
fmt.Println(greek)
}(ph)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment