package
0.0.0-20211127175118-db3ee8db598d
Repository: https://github.com/saraginov/learn-go.git
Documentation: pkg.go.dev

# README

Select

Go's select lets you wait on multiple channel operations. Combining goroutines and channels with select is a powerful feature of Go.

A select can only be used with channels.

Note to self: it looks like a switch statement, which is why I was a tad confused about it...