From aac40f6120e704208518104279e6640623114c6d Mon Sep 17 00:00:00 2001 From: Sho Nakatani Date: Fri, 30 Dec 2016 17:53:24 +0900 Subject: [PATCH] fixes variables1 --- variables/variables1.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variables/variables1.rs b/variables/variables1.rs index e0ad5de8..4be88a30 100644 --- a/variables/variables1.rs +++ b/variables/variables1.rs @@ -1,7 +1,7 @@ // Make me compile! Scroll down for hints :) fn main() { - x = 5; + let x = 5; println!("x has the value {}", x); }