diff options
| author | Evan Carroll <me@evancarroll.com> | 2020-05-25 03:09:11 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-25 10:09:11 +0200 |
| commit | 06ef4cc654e75d22a526812919ee49b8956280bf (patch) | |
| tree | e8f62b8a43e0afd880e5fef379a95111fcefa0af /exercises/variables/variables5.rs | |
| parent | c7c3130507c987bf9d7312e6d9ac69908cad3a49 (diff) | |
fix: confine the user further in variable exercises
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.
Diffstat (limited to 'exercises/variables/variables5.rs')
| -rw-r--r-- | exercises/variables/variables5.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/variables/variables5.rs b/exercises/variables/variables5.rs index 47a68a5..5b2c2fa 100644 --- a/exercises/variables/variables5.rs +++ b/exercises/variables/variables5.rs @@ -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); |
