Channels in GO

Jimmy (xiaoke) Shen
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].

Reference

[1]https://gobyexample.com/channels

--

--

No responses yet