mirror of
https://github.com/rust-lang/rustlings.git
synced 2026-03-31 03:29:19 +00:00
11 lines
195 B
Rust
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!");
|
|
}
|
|
}
|