1
0
Fork 0

example of using a select statement with channels

This commit is contained in:
Stephen M. McQuay 2012-09-03 08:38:21 -06:00
parent a8b0538b1b
commit e3bfba2430
1 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,28 @@
package main
import "fmt"
func fibonacci(c, quit chan int) {
x, y := 0, 1
for {
select {
case c <- x:
x, y = y, x+y
case <-quit:
fmt.Println("quit")
return
}
}
}
func main() {
c := make(chan int)
quit := make(chan int)
go func() {
for i := 0; i < 20; i++ {
fmt.Println(<-c)
}
quit <- 0
}()
fibonacci(c, quit)
}