Skip to content

Instantly share code, notes, and snippets.

@yakuter
Created April 18, 2019 20:28
Show Gist options
  • Save yakuter/bf969c89936e0629b4a7d8e750c263c2 to your computer and use it in GitHub Desktop.
Save yakuter/bf969c89936e0629b4a7d8e750c263c2 to your computer and use it in GitHub Desktop.
Go Channel Oluşturma Örneği
ilkKanal := make(chan string)
ilkKanal <- "merhaba" // Gönderme
degisken := <- ilkKanal // Alma
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment