Files
rustlings/exercises/01_variables/variables2.rs
2026-01-08 07:30:04 +00:00

11 lines
199 B
Rust

fn main() {
// TODO: Change the line below to fix the compiler error.
let x: i32 = 0;
if x == 10 {
println!("x is ten!");
} else {
println!("x is not ten!");
}
}