Who else considers Rust to be surprisingly high level and suitable for any kind of app programming, despite its systems programming roots?
ADTs, pattern matching and Rust's implementation of iterators often make me choose Rust even for apps where performance or safety aren't important.
#rustlang
ADTs, pattern matching and Rust's implementation of iterators often make me choose Rust even for apps where performance or safety aren't important.
#rustlang
Comments
as much as I love rust, it's not that good for rapid prototyping and and modifications, thinking about thread safety when you just want to write a ui is not very productive
I set out to bang two libraries I don't really understand together, the compiler tells me I haven't proved nothing bad can ever happen, and I give up.
That said, you can use unwrap/expect and clone a bit more while experimenting with it.
Prototyping and correctness just don't go well together I guess.