89
Rust Derangement Syndrome
(thelemmy.club)
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Can 100% agree with it. Rusts type system is very unique and quite unusual especially when coming from C
It's certainly different than C, but IMO Rust's type system is also a dramatic improvement.
I am still learning Rust, so I can Not really say that much about it, but especially when considering things like Error handling it seems very good. No more returning invalid values. You just return a Result type and implement error handling based on that.