trpl-zh-cn/listings/ch03-common-programming-concepts/listing-03-02/src/main.rs

7 lines
139 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
fn main() {
let condition = true;
let number = if condition { 5 } else { 6 };
println!("The value of number is: {number}");
2022-02-06 16:43:51 +08:00
}