mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-04-22 05:18:04 +08:00
10 lines
155 B
Rust
10 lines
155 B
Rust
fn main() {
|
|
let number = 3;
|
|
|
|
if number < 5 {
|
|
println!("condition was true");
|
|
} else {
|
|
println!("condition was false");
|
|
}
|
|
}
|