From 05148686069ee7740fb92ac1df729418c5d0b2fe Mon Sep 17 00:00:00 2001 From: ynhhoJ Date: Sat, 16 Apr 2022 11:37:10 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A7Variables:=20Exercise=202?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- exercises/variables/variables2.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/variables/variables2.rs b/exercises/variables/variables2.rs index 7774a8fb..ebb15b7d 100644 --- a/exercises/variables/variables2.rs +++ b/exercises/variables/variables2.rs @@ -1,10 +1,10 @@ // variables2.rs // Make me compile! Execute the command `rustlings hint variables2` if you want a hint :) -// I AM NOT DONE +// I AM DONE fn main() { - let x; + let x = 10; if x == 10 { println!("Ten!"); } else {