Y
Hacker News
new
|
ask
|
show
|
jobs
by
pepa65
586 days ago
You're obviously not a Rust programmer.
1 comments
flohofwoe
586 days ago
Rust only protects from a very small subset of bugs (memory corruption issues and data races) but not from logic bugs which are far more common.
link
Animats
586 days ago
Rust protects against undefined behavior. This is enough that programs either panic in a well-defined way, or continue to run well enough that logging works.
link
flohofwoe
585 days ago
Not having UB isn't exactly unique to Rust though (Rust does have some UB btw it's just not as easy to encounter as in C or C++).
link