rustlings/exercises/variables/variables5.rs
Evan Carroll b3d9c6fe49 Confine the user further
We want to teach a specific lesson. To ensure that we do, let's try to
provide more clarity on what the user should not do.
2020-05-25 01:09:14 -05:00

12 lines
274 B
Rust

// 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);
}