rustlings/exercises/variables/variables2.rs
Olaoye Kayode Samuel df6f4a3e73
Update variables2.rs
initialized x to 20
2021-11-18 20:52:24 +01:00

14 lines
248 B
Rust

// variables2.rs
// Make me compile! Execute the command `rustlings hint variables2` if you want a hint :)
// I AM NOT DONE
fn main() {
let x = 20;
if x == 10 {
println!("Ten!");
} else {
println!("Not ten!");
}
}