You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
zk/tests/fixtures/full-sample/4oma.md

8 lines
359 B
Markdown

# Message passing
* A popular approach for safe concurrency is to use *message passing* instead of shared state.
* Channels are an example of a message passing implementation.
* The Go language is advocating for this approach with their slogan: "[Do not communicate by sharing memory; instead, share memory by communicating](ref/7fto)".
:programming: