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