Repository URL to install this package:
c := make(chan int, 10) c <- 3 close(c) d := <-c e, ok := <-c println(d) println(e, ok)