From a43c267648e6f7c4596bbe6c02c60e86ba9d31ab Mon Sep 17 00:00:00 2001 From: Tiago Rinaldi <trinaldi@gmail.com> Date: Thu, 27 Aug 2020 22:23:37 -0300 Subject: [PATCH] Fix exercice1 --- exercises/variables/variables1.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/exercises/variables/variables1.rs b/exercises/variables/variables1.rs index 4a3af73..9a948f7 100644 --- a/exercises/variables/variables1.rs +++ b/exercises/variables/variables1.rs @@ -6,9 +6,7 @@ // even after you already figured it out. If you got everything working and // feel ready for the next exercise, remove the `I AM NOT DONE` comment below. -// I AM NOT DONE - fn main() { - x = 5; + let x: i32 = 5; println!("x has the value {}", x); }