mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-04-07 04:18:04 +08:00
7 lines
139 B
Rust
Executable File
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}");
|
|
}
|