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); }