rustlings/exercises/variables/variables2.rs
blacktoast db97311d3f test
2021-09-28 05:21:32 +00:00

15 lines
252 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;
x=9;
if x == 10 {
println!("Ten!");
} else {
println!("Not ten!");
}
}