Skip to content

Instantly share code, notes, and snippets.

@donvito
Created May 25, 2020 14:16
Show Gist options
  • Save donvito/cbad40eb374e016b936619afea532109 to your computer and use it in GitHub Desktop.
Save donvito/cbad40eb374e016b936619afea532109 to your computer and use it in GitHub Desktop.
channel
package main
import "fmt"
func main(){
c := make(chan int)
go func(){
c <- 234
}()
fmt.Print(<-c)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment