mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-04-06 11:48:03 +08:00
7 lines
120 B
Rust
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}");
|
|
}
|