mirror of
https://github.com/rust-lang/rustlings.git
synced 2025-01-13 16:16:28 +00:00
10 lines
138 B
Rust
10 lines
138 B
Rust
// Make me compile!
|
|
|
|
fn main() {
|
|
let x;
|
|
if x == 10 {
|
|
println!("Ten!");
|
|
} else {
|
|
println!("Not ten!");
|
|
}
|
|
}
|