Channels making

Report a typo

Map the channel creation task to the code.

Match the items from left and right columns
Unbuffered channel of integer numbers
Channel of functions with buffer 5
Channel of float numbers with buffer 5
Unbuffered channel of float numbers
Channel of integer numbers with buffer 3
make(chan int, 3)
make(chan float64, 5)
make(chan float64)
make(chan func(), 5)
make(chan int, 0)
___

Create a free account to access the full topic