Hacker News new | ask | show | jobs
by smadge 103 days ago
The prequel “Message Passing Is Shared Mutable State” makes the claim that highly scrutinized go codebases had just as many message passing bugs (using go channels) as shared memory bugs. But then this article claims the Erlang community has a record of higher quality and reliability largely through discipline and convention.
1 comments

Erlang shares messages by copying. Go has shared pointers to mutable data.