Skip to content

Instantly share code, notes, and snippets.

@atton
Created March 19, 2016 07:35
Show Gist options
  • Save atton/b3c919ad64de994b06c8 to your computer and use it in GitHub Desktop.
Save atton/b3c919ad64de994b06c8 to your computer and use it in GitHub Desktop.
package main
import "fmt"
import "time"
func yo(c chan int) {
fmt.Printf("%d\n", <-c)
}
func main() {
c := make(chan int, 0) // dead lock
//c := make(chan int, 1) // ok
c <- 100
go yo(c)
time.Sleep(time.Second * 1)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment