mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-04-09 22:08:06 +08:00
7 lines
128 B
Rust
7 lines
128 B
Rust
|
fn main() {
|
||
|
let mut x = 5;
|
||
|
println!("The value of x is: {}", x);
|
||
|
x = 6;
|
||
|
println!("The value of x is: {}", x);
|
||
|
}
|