Fix exercice1

This commit is contained in:
Tiago Rinaldi 2020-08-27 22:27:50 -03:00
parent a43c267648
commit 36f6de99c2

View file

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