Skip to content

Instantly share code, notes, and snippets.

@emretanriverdi
Last active January 17, 2021 19:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save emretanriverdi/f675312755c02ebe3784e2a87b6fb3f4 to your computer and use it in GitHub Desktop.
Save emretanriverdi/f675312755c02ebe3784e2a87b6fb3f4 to your computer and use it in GitHub Desktop.
unbuffered-channel.go
func channel() {
c := make(chan string)
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