|
|
|
|
|
by jvanderbot
605 days ago
|
|
Go's concurrency is unsafe?
Rust's concurrency is automatically safe? I am not saying you're wrong, I just don't find it any better than C++ concurrent code, you just have many different lock types that correspond to the borrow-checker's expectations, vs C++'s primitives / lock types. Channels are nicer, but that's doable easily in C++ and native to Go. |
|