rustlings/exercises/01_variables/variables2.rs

11 lines
195 B
Rust
Raw Normal View History

2024-10-28 20:46:17 +00:00
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!");
}
}