trpl-zh-cn/listings/ch03-common-programming-concepts/no-listing-28-if-condition-must-be-bool/src/main.rs

8 lines
95 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
fn main() {
let number = 3;
if number {
println!("number was three");
}
}