mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-16 04:28:07 +08:00
8 lines
95 B
Rust
8 lines
95 B
Rust
fn main() {
|
|
let number = 3;
|
|
|
|
if number {
|
|
println!("number was three");
|
|
}
|
|
}
|