trpl-zh-cn/listings/ch03-common-programming-concepts/no-listing-06-floating-point/src/main.rs
2022-02-06 16:43:51 +08:00

6 lines
68 B
Rust
Executable File

fn main() {
let x = 2.0; // f64
let y: f32 = 3.0; // f32
}