2024-06-10 14:19:26 +08:00

15 lines
255 B
Rust

// variables2.rs
//
// 執行 `rustlings hint variables2` 或使用 `hint` watch 子命令來獲取提示。
// I AM NOT DONE
fn main() {
let x;
if x == 10 {
println!("x is ten!");
} else {
println!("x is not ten!");
}
}