|
|
|
|
|
by WYepQ4dNnG
1509 days ago
|
|
I wish an expressive language like Rust, but with a GC, so I don't have to think about borrow/checker and memory manager in general. I have tried to use Go but did not find appealing or ergonomic. I would choose Java/Kotlin over it, perhaps with GraalVM. If I had to write system tools, I'd probable go with Rust. |
|
Working with filenames/paths is one of those - if one works with (transforms) filenames/paths, the code will be polluted with all the conversions between PathBuf/Path/OsString/OsStr (and the canonical String/&str); this makes it hard to reason about the abstract logic.
It absolutely makes sense that Rust forces one to consider the robustness of the code, but in some cases one just doesn't want such robustness.
Cyclic graphs are another very ugly thing to work with in Rust (without supporting libraries).