trpl-zh-cn/listings/ch03-common-programming-concepts/no-listing-01-variables-are-immutable/src/main.rs

7 lines
120 B
Rust

fn main() {
let x = 5;
println!("The value of x is: {x}");
x = 6;
println!("The value of x is: {x}");
}