Vedant-asati a5382eb242 d1
2024-12-27 19:00:40 +05:30

11 lines
198 B
Rust

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