mirror of
https://github.com/notohh/rustlings.git
synced 2024-11-22 05:52:23 -05:00
8 lines
127 B
Rust
8 lines
127 B
Rust
fn main() {
|
|
let x;
|
|
if x == 10 {
|
|
println!("x is ten!");
|
|
} else {
|
|
println!("x is not ten!");
|
|
}
|
|
}
|