fixes variables1

This commit is contained in:
Sho Nakatani 2016-12-30 17:53:24 +09:00
parent 2079503b21
commit aac40f6120

View file

@ -1,7 +1,7 @@
// Make me compile! Scroll down for hints :)
fn main() {
x = 5;
let x = 5;
println!("x has the value {}", x);
}