From 36f6de99c26b65f2347fc98f98feab0abbcc72ec Mon Sep 17 00:00:00 2001
From: Tiago Rinaldi <trinaldi@gmail.com>
Date: Thu, 27 Aug 2020 22:27:50 -0300
Subject: [PATCH] Fix exercice1

---
 exercises/variables/variables1.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/exercises/variables/variables1.rs b/exercises/variables/variables1.rs
index 9a948f7..db85e7e 100644
--- a/exercises/variables/variables1.rs
+++ b/exercises/variables/variables1.rs
@@ -7,6 +7,6 @@
 // feel ready for the next exercise, remove the `I AM NOT DONE` comment below.
 
 fn main() {
-    let x: i32 = 5;
+    let x = 5;
     println!("x has the value {}", x);
 }