From 44eb9f7c3c36e0d7a9179dbae514210c59d0c612 Mon Sep 17 00:00:00 2001 From: Paul Scarrone Date: Sun, 12 Feb 2023 19:28:54 -0500 Subject: [PATCH] variables 3 --- exercises/variables/variables3.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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}"); }