In Rust, the default integer type is i32 and the default float type is f64 . let i = 10; // Equals to `let i: i32 = 10;` let f = ...
確定! 回上一頁