Hacker News new | ask | show | jobs
by the_duke 2677 days ago
Rust.

In Rust, all type coercion must be explicit, you can't even add different integer types:

5i64 + 5i32 // WONT compile

5i64 + 5i32 as i64 // will work