|
|
|
|
|
by HL33tibCe7
500 days ago
|
|
I feel like Rust just isn’t stable or mature enough as a language for moving Linux towards it to make sense. Currently feels like you need a PhD in programming languages to use it effectively. Feels like Haskell in many ways. |
|
Rust got popular in part because it made systems programming easier, simpler and more fool-proof than the existing alternatives (C, C++) for those coming from languages like Python, Ruby and Java. As someone whose primary experience is in Python, I never found Rust abnormally difficult to pick up, whereas Haskell is (and remains) entirely alien to me. Sure, lifetimes can get messy, but it's much easier to have the compiler hit me on the head when I'm doing something dumb than to spend 2 days figuring out how to use Valgrind and the other half-dozen different static analyzers. I don't need to devote 100% of my mental effort to be able to write reliable code that's not going to blow up later in subtle ways.