From a3d18c416b540cb75271f458b4641eafb7ee1c5b Mon Sep 17 00:00:00 2001 From: ynhhoJ Date: Sat, 16 Apr 2022 11:38:12 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A7Variables:=20Exercise=203?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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 30ec48ff..e3defb38 100644 --- a/exercises/variables/variables3.rs +++ b/exercises/variables/variables3.rs @@ -1,10 +1,10 @@ // variables3.rs // Make me compile! Execute the command `rustlings hint variables3` if you want a hint :) -// I AM NOT DONE +// I AM DONE fn main() { - let x = 3; + let mut x = 3; println!("Number {}", x); x = 5; // don't change this line println!("Number {}", x);