|
|
|
|
|
by wwright
2696 days ago
|
|
One thing people (like me ) often say is that it forces you to “learn to write better.” One way you can think of it is this: - Rust rejects some programs that are truly wrong (`“2” + 3` style) - Rust rejects some programs that really are just fine. They are actively improving this with stuff like “Non-lexical lifetimes.” - Rust rejects some programs that are fine _how they are now_, but which are hard to keep fine when you change them. This is part of why linked lists are hard to write in Rust :-) |
|