From df6f4a3e73a4cb289fd73ae2c86b0fae727510c4 Mon Sep 17 00:00:00 2001 From: Olaoye Kayode Samuel <58891337+kaygrammer@users.noreply.github.com> Date: Thu, 18 Nov 2021 20:52:24 +0100 Subject: [PATCH] Update variables2.rs initialized x to 20 --- exercises/variables/variables2.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/variables/variables2.rs b/exercises/variables/variables2.rs index 7774a8fb..457f2bdd 100644 --- a/exercises/variables/variables2.rs +++ b/exercises/variables/variables2.rs @@ -4,7 +4,7 @@ // I AM NOT DONE fn main() { - let x; + let x = 20; if x == 10 { println!("Ten!"); } else {