|
|
|
|
|
by josephg
1109 days ago
|
|
Right. But you can fumble through writing a lot of (maybe subtly wrong) C code. I certainly did for many years. You can't fumble through writing Rust. Its an order of magnitude more difficult to learn because the compiler won't compile "bad" code. Unlike C all the pain happens up front. Rust hurts when you're learning it. C hurts when you're trying to debug your program. If you've never written low level code before, I wouldn't start with rust. Zig or C are both much better options when getting started. But learning rust eventually will make you a better programmer. |
|
With all that said, there are lots of things that Rust could do to make itself easier to learn. I believe it will get there, in time.