mirror of
https://github.com/notohh/rustlings.git
synced 2024-10-30 08:49:12 -04: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!");
|
|
}
|
|
}
|