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.
This commit is contained in:
Evan Carroll 2020-05-25 00:57:36 -05:00
parent c7c3130507
commit b3d9c6fe49
2 changed files with 2 additions and 2 deletions
exercises/variables

View file

@ -6,6 +6,6 @@
fn main() {
let x = 3;
println!("Number {}", x);
x = 5;
x = 5; // don't change this line
println!("Number {}", x);
}

View file

@ -4,7 +4,7 @@
// I AM NOT DONE
fn main() {
let number = "3";
let number = "3"; // don't change this line
println!("Number {}", number);
number = 3;
println!("Number {}", number);