From fa3c231e709d65c3ac72f77f927ecd0e8680b825 Mon Sep 17 00:00:00 2001 From: Paul Scarrone Date: Sun, 12 Feb 2023 19:27:22 -0500 Subject: [PATCH] variables 2 --- exercises/variables/variables2.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/exercises/variables/variables2.rs b/exercises/variables/variables2.rs index 641aeb8e..ea8b1076 100644 --- a/exercises/variables/variables2.rs +++ b/exercises/variables/variables2.rs @@ -1,10 +1,8 @@ // variables2.rs // Execute `rustlings hint variables2` or use the `hint` watch subcommand for a hint. -// I AM NOT DONE - fn main() { - let x; + let x = 10; if x == 10 { println!("x is ten!"); } else {