package main
func print(ci <-chan int) {
//TODO: implement
}
func main() {
c := make(chan int)
c <- 1
c <- 2
c <- 3
close(c)
print(c)