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

8 lines
95 B
Rust

fn main() {
let number = 3;
if number {
println!("number was three");
}
}