rustlings/exercises/variables/variables2.rs
blacktoast c2ae843e4b test
2021-09-28 05:49:46 +00:00

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