diff options
Diffstat (limited to 'exercises/variables/variables5.rs')
| -rw-r--r-- | exercises/variables/variables5.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/exercises/variables/variables5.rs b/exercises/variables/variables5.rs index 175eebb..0e670d2 100644 --- a/exercises/variables/variables5.rs +++ b/exercises/variables/variables5.rs @@ -1,11 +1,11 @@ // variables5.rs -// Make me compile! Execute the command `rustlings hint variables5` if you want a hint :) +// Execute `rustlings hint variables5` or use the `hint` watch subcommand for a hint. // I AM NOT DONE fn main() { let number = "T-H-R-E-E"; // don't change this line println!("Spell a Number : {}", number); - number = 3; + number = 3; // don't rename this variable println!("Number plus two is : {}", number + 2); } |
