diff options
Diffstat (limited to 'exercises/variables/variables3.rs')
| -rw-r--r-- | exercises/variables/variables3.rs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/exercises/variables/variables3.rs b/exercises/variables/variables3.rs index 30ec48f..819b1bc 100644 --- a/exercises/variables/variables3.rs +++ b/exercises/variables/variables3.rs @@ -1,11 +1,9 @@ // variables3.rs -// Make me compile! Execute the command `rustlings hint variables3` if you want a hint :) +// Execute `rustlings hint variables3` or use the `hint` watch subcommand for a hint. // I AM NOT DONE fn main() { - let x = 3; - println!("Number {}", x); - x = 5; // don't change this line + let x: i32; println!("Number {}", x); } |
