6 lines
124 B
Rust
6 lines
124 B
Rust
fn main() {
|
|
let mut x = 5;
|
|
println!("The value of x is: {x}");
|
|
x = 6;
|
|
println!("The value of x is: {x}");
|
|
}
|