|
|
|
|
|
by bqmjjx0kac
1190 days ago
|
|
I'm a big fan of Rust, but I have to admit its up-front development costs are not always worth the trouble. Rust isn't great for rapid prototyping, where Python excels. Python is quicker for the first few hundred LoC, but I quickly find myself reaching for Rust enums (aka ADTs or sum types), match expressions, and the assurances of static typing. It's also a bit annoying dealing with &str vs String. I frequently find myself writing things like "foo".to_string(). It's also difficult to build Rust with Bazel, and possibly other non-Cargo build systems. |
|