Channels in GO
1 min readAug 21, 2020
Channels are the pipes that connect concurrent goroutines. You can send values into channels from one goroutine and receive those values into another goroutine.[1]
Detail and examples see[1].
Channels are the pipes that connect concurrent goroutines. You can send values into channels from one goroutine and receive those values into another goroutine.[1]
Detail and examples see[1].