Y
Hacker News
new
|
ask
|
show
|
jobs
by
deskr
680 days ago
What advantages are those?
1 comments
morning-coffee
680 days ago
Rust's compiler can prevent data races, for example. (It forbids mutation in the presence of aliasing, which is the root of it.)
link
dijit
680 days ago
should be mentioned that Go has optional flags already built in to the compiler for detection of data races.
link
jb1991
680 days ago
the race detector ( -race ) only detects races that actually occur. If they don't happen, then it doesn't detect them.
link
ycombinatrix
680 days ago
should we also mention that C has optional tooling for memory safety?
link