Skip to content

Instantly share code, notes, and snippets.

@wilk
Created September 8, 2018 09:42
Show Gist options
  • Save wilk/8c98c9278124cd2b693619f3379a1ad2 to your computer and use it in GitHub Desktop.
Save wilk/8c98c9278124cd2b693619f3379a1ad2 to your computer and use it in GitHub Desktop.
golang goroutine
func main() {
go func(msg string) {
fmt.Println(msg)
}("going")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment