rustlings/exercises/01_variables/variables2.rs
Denis-Cosmin NUTIU 06573e87ac initial commit
2024-10-28 22:46:17 +02:00

10 lines
195 B
Rust

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