diff options
Diffstat (limited to 'exercises/01_variables/variables3.rs')
| -rw-r--r-- | exercises/01_variables/variables3.rs | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/exercises/01_variables/variables3.rs b/exercises/01_variables/variables3.rs index 86bed41..06f35bb 100644 --- a/exercises/01_variables/variables3.rs +++ b/exercises/01_variables/variables3.rs @@ -1,11 +1,6 @@ -// variables3.rs -// -// Execute `rustlings hint variables3` or use the `hint` watch subcommand for a -// hint. - -// I AM NOT DONE - fn main() { + // TODO: Change the line below to fix the compiler error. let x: i32; - println!("Number {}", x); + + println!("Number {x}"); } |
