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

7 lines
120 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
fn main() {
let x = 5;
println!("The value of x is: {x}");
2022-02-06 16:43:51 +08:00
x = 6;
println!("The value of x is: {x}");
2022-02-06 16:43:51 +08:00
}