mirror of
https://github.com/rust-lang/rustlings.git
synced 2025-12-28 06:49:19 +00:00
11 lines
198 B
Rust
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!");
|
|
}
|
|
}
|