mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-02-24 21:32:15 +08:00
6 lines
68 B
Rust
Executable File
6 lines
68 B
Rust
Executable File
fn main() {
|
|
let x = 2.0; // f64
|
|
|
|
let y: f32 = 3.0; // f32
|
|
}
|