Junior — Senior
Merging multiple input channels into a single output
livecode
Task condition
It is necessary to implement a function that takes an arbitrary number of input channels and returns a single channel through which all values received from the source channels will be transmitted.
func merge(src ...chan int) chan int {
}