|
|
|
|
|
by ssokolow
1473 days ago
|
|
Matter of taste. I find Rust perfect for hobby projects because: 1. Squashing bugs that show up after the code successfully compiles (or, in Python's case, appears to work) is a big drain on motivation. 2. The ecosystem's focus on API stability means that, once it works the way I want, the costs of ensuring "it built/ran yesterday, so it should build/run today too" will be minimized. 3. I don't have to write as many unit tests to feel I can trust it with my data. TL;DR: Once you're on the same wavelength as the compiler, Rust is great for projects where your motivation is purely intrinsic. (Well, that and the compiler has been constantly improving. Things especially got much better after non-lexical lifetimes landed.) |
|