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)
}