Sign in
go
/
website
/
47aa77ee5c8e76cb4901fd5877cc2abd39497bd7
/
.
/
_content
/
talks
/
2014
/
research2
/
hello.go
blob: 32efb51eb55de7606f791226f1a6b81d84cc9308 [
file
] [
log
] [
blame
]
// +build ignore,OMIT
package main
import "fmt"
func main() {
c := make(chan string)
go func() {
c <- "Hello"
c <- "World"
}()
fmt.Println(<-c, <-c)
}