func fuck(c chan int){ d:= <- c fmt.Println(d)}func main() {c:=make(chan int)go fuck(c)c<-616c<-61658