DEV Community

Discussion on: Rust looks awesome

Collapse
 
bavalpey profile image
Benjamin Valpey

This is just so not true. The compiler walks through very simple errors. Sure, it points you in a direction, but the compiler's messages are not nearly as helpful with lifetimes and borrowing. So yes, it is indeed very difficult. So is writing safe code.

Collapse
 
deciduously profile image
Ben Lovy

I disagree, I find the compiler very helpful for these issues. It's clearly shows me why I'm trying to do something I shouldn't be doing, and why it's problematic.

Thread Thread
 
mburszley profile image
Maximilian Burszley

I find people who struggle with it also struggle with thinking about how memory is being used and are trying to use Rust like they use a managed language.