rustlings/exercises/variables/variables2.rs
UlyssesPrime 86f9341c62 Initial
2022-04-20 01:38:35 -04:00

12 lines
235 B
Rust

// variables2.rs
// Make me compile! Execute the command `rustlings hint variables2` if you want a hint :)
fn main() {
let x: u16 = 32;
if x == 10 {
println!("Ten!");
} else {
println!("Not ten!");
}
}