Skip to content

Instantly share code, notes, and snippets.

@yakuter
Created April 18, 2019 20:28
Embed
What would you like to do?
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