11 lines
138 B
Rust
11 lines
138 B
Rust
// Make me compile!
|
|
|
|
fn main() {
|
|
let x;
|
|
if x == 10 {
|
|
println!("Ten!");
|
|
} else {
|
|
println!("Not ten!");
|
|
}
|
|
}
|