36 lines
472 B
Go
36 lines
472 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func main() {
|
|
c1 := make(chan string)
|
|
c2 := make(chan string)
|
|
a := 0
|
|
|
|
go func() {
|
|
toSend := "hello"
|
|
select {
|
|
case c2 <- toSend:
|
|
a++
|
|
}
|
|
c1 <- "done"
|
|
}()
|
|
|
|
for i := 0; i < 2; i++ {
|
|
select {
|
|
case msg1 := <-c1:
|
|
fmt.Println("received from c1:", msg1)
|
|
case msg2 := <-c2:
|
|
fmt.Println("received from c2:", msg2)
|
|
}
|
|
}
|
|
fmt.Println("Bye", a)
|
|
}
|
|
|
|
// Output:
|
|
// received from c2: hello
|
|
// received from c1: done
|
|
// Bye 1
|