Hacker News new | ask | show | jobs
by dijit 680 days ago
should be mentioned that Go has optional flags already built in to the compiler for detection of data races.
2 comments

the race detector ( -race ) only detects races that actually occur. If they don't happen, then it doesn't detect them.
should we also mention that C has optional tooling for memory safety?