normandy/foo2.go
2015-12-15 13:50:57 +01:00

7 lines
72 B
Go

package main
func main() {
c := make(chan string, 1)
c<-"foo"
<-c
}