rustlings/exercises/variables/variables2.rs
blacktoast 7b2cf72743 test2
2021-09-28 05:44:46 +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!");
}
}