rustlings/variables/variables2.rs
2015-09-16 20:27:45 -04:00

11 lines
138 B
Rust

// Make me compile!
fn main() {
let x;
if x == 10 {
println!("Ten!");
} else {
println!("Not ten!");
}
}