Skip to content

Instantly share code, notes, and snippets.

@yakuter
Created April 18, 2019 20:24
Show Gist options
  • Save yakuter/c6b65ab16226a81664efb3e5a1390984 to your computer and use it in GitHub Desktop.
Save yakuter/c6b65ab16226a81664efb3e5a1390984 to your computer and use it in GitHub Desktop.
İsimsiz Go Routine Örneği
func main() {
go func() {
fmt.Println("Merhaba isimsiz dünya")
}()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment