Skip to content

Instantly share code, notes, and snippets.

@AlexeySoshin
Created September 3, 2017 16:27
Show Gist options
  • Save AlexeySoshin/09cab0f431ebe976ea5d6b559683327e to your computer and use it in GitHub Desktop.
Save AlexeySoshin/09cab0f431ebe976ea5d6b559683327e to your computer and use it in GitHub Desktop.
for i := 0; i < 10; i++ {
go func() {
time.Sleep(1 * time.Second)
fmt.Println("Finished")
}()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment