trpl-zh-cn/listings/ch03-common-programming-concepts/listing-03-02/src/main.rs
Sefank 7090f728ec
Update listing code in ch03
Signed-off-by: Sefank <12670778+Sefank@users.noreply.github.com>
2022-07-04 10:48:13 +08:00

7 lines
139 B
Rust
Executable File

fn main() {
let condition = true;
let number = if condition { 5 } else { 6 };
println!("The value of number is: {number}");
}