rustlings/exercises/variables/variables2.rs

17 lines
267 B
Rust
Raw Normal View History

2018-02-22 13:09:53 +07:00
// variables2.rs
//
// Make me compile!
//
// If you need help, open the corresponding README.md or run: rustlings hint variables2
2015-09-17 06:19:24 +06:00
// I AM NOT DONE
2015-09-17 06:19:24 +06:00
fn main() {
let x;
if x == 10 {
println!("Ten!");
} else {
println!("Not ten!");
}
}