Skip to content

Instantly share code, notes, and snippets.

@emretanriverdi
Last active January 17, 2021 19:20
Show Gist options
  • Save emretanriverdi/d33cbb3880f001a60ebfdf8d5b80ecd7 to your computer and use it in GitHub Desktop.
Save emretanriverdi/d33cbb3880f001a60ebfdf8d5b80ecd7 to your computer and use it in GitHub Desktop.
buffered-channel-1.go
func channel() {
c := make(chan string, 2)
c <- "emre"
username := <- c
fmt.Println(username)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment