blob: f2c9c63541da46bb4c7e0ac06a3180778260d37e (
plain)
1
2
3
4
5
6
7
8
9
|
// variables3.rs
// Make me compile! Execute the command `rustlings hint variables3` if you want a hint :)
fn main() {
let x = 3;
println!("Number {}", x);
x = 5;
println!("Number {}", x);
}
|