|
|
|
|
|
by germandiago
256 days ago
|
|
Rust is not the most productive language by any means... it is hardened AF if you avoid unsafe, but productive? I can code much faster in almost any language compared to Rust. It creates mental overhead. For example, to compare it to siblings, Swift and C++ (yes, even C++, but with a bit of knowledge of good practices) lets you produce stuff more easily than Rust. It is just that Rust, compared to C++, comes extra-hardened. But now go get refactor your Rust code if you started to add lifetimes around... things get coupled quickly. It is particularly good at hardening and particularly bad at prototyping. They seem to be the opposite in the absence of borrowing without a garbage collector, since you need to mark the lifetime in some way. |
|