diff --git a/exercises/variables/variables3.rs b/exercises/variables/variables3.rs index 819b1bc7..0f00c9f1 100644 --- a/exercises/variables/variables3.rs +++ b/exercises/variables/variables3.rs @@ -1,9 +1,9 @@ // variables3.rs // Execute `rustlings hint variables3` or use the `hint` watch subcommand for a hint. -// I AM NOT DONE - fn main() { let x: i32; + x = 10; println!("Number {}", x); + println!("Number {x}"); }