🚧Variables: Exercise 3

This commit is contained in:
ynhhoJ 2022-04-16 11:38:12 +03:00
parent 0514868606
commit a3d18c416b

View File

@ -1,10 +1,10 @@
// variables3.rs // variables3.rs
// Make me compile! Execute the command `rustlings hint variables3` if you want a hint :) // Make me compile! Execute the command `rustlings hint variables3` if you want a hint :)
// I AM NOT DONE // I AM DONE
fn main() { fn main() {
let x = 3; let mut x = 3;
println!("Number {}", x); println!("Number {}", x);
x = 5; // don't change this line x = 5; // don't change this line
println!("Number {}", x); println!("Number {}", x);