2026-02-20 23:56:39 -06:00

11 lines
195 B
Rust

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