rustlings/exercises/variables/variables2.rs

13 lines
231 B
Rust
Raw Permalink Normal View History

2021-07-08 02:58:36 +07:00
// variables2.rs
// Make me compile! Execute the command `rustlings hint variables2` if you want a hint :)
fn main() {
2021-07-08 03:02:31 +07:00
let x = 10;
2021-07-08 02:58:36 +07:00
if x == 10 {
println!("Ten!");
} else {
println!("Not ten!");
}
}