blob: 5b2c2fa313d63d40b2419d70e2f1c32ff32bf4dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// variables5.rs
// Make me compile! Execute the command `rustlings hint variables5` if you want a hint :)
// I AM NOT DONE
fn main() {
let number = "3"; // don't change this line
println!("Number {}", number);
number = 3;
println!("Number {}", number);
}
|