rustlings/.history/exercises/variables/variables2_20230726201841.rs
Byoungyoon Park 872a8cbcd5 20230726
2023-07-26 23:03:48 +09:00

14 lines
249 B
Rust

// variables2.rs
// Execute `rustlings hint variables2` or use the `hint` watch subcommand for a hint.
// I AM NOT DONE
fn main() {
let x;
if x == 10 {
println!("x is ten!");
} else {
println!("x is not ten!");
}
}