Skip to content

Instantly share code, notes, and snippets.

@yumed15
Created November 22, 2023 12:11
Show Gist options
  • Save yumed15/e6f9818ca581cc17820239cdda43dd33 to your computer and use it in GitHub Desktop.
Save yumed15/e6f9818ca581cc17820239cdda43dd33 to your computer and use it in GitHub Desktop.
// BAD
var wg sync.WaitGroup
for _, salutation := range []string{"hello", "greetings", "good day"} {
wg.Add(1)
go func() {
defer wg.Done()
fmt.Println(salutation)
}()
}
wg.Wait()
// good day
// good day
// good day
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment