I'm curious as to why Rust guides and examples tend to use i32 for numeric values by default when, for most purposes, we're in a 64-bit world. Why aren't folks reaching for i64 first?
I'm likely missing something, and I'd like to know what.
#rust #rustlang