Fix exercice2

This commit is contained in:
Tiago Rinaldi 2020-08-27 22:28:58 -03:00
parent 36f6de99c2
commit f2c19c5237

View file

@ -1,10 +1,8 @@
// variables2.rs // variables2.rs
// Make me compile! Execute the command `rustlings hint variables2` if you want a hint :) // Make me compile! Execute the command `rustlings hint variables2` if you want a hint :)
// I AM NOT DONE
fn main() { fn main() {
let x; let x: i32 = 0;
if x == 10 { if x == 10 {
println!("Ten!"); println!("Ten!");
} else { } else {