freeCodeCamp/guide/english/go/go-channels/index.md

866 B

title
Go Channels

Go Channels

Channels are the pipes that connect concurrent goroutines. You can send values into channels from one goroutine and receive those values into another goroutine.

This quick style guide will help ensure your pull request gets accepted.

More Information: