mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-04-19 03:08:06 +08:00
7 lines
141 B
Rust
7 lines
141 B
Rust
|
fn main() {
|
||
|
let condition = true;
|
||
|
let number = if condition { 5 } else { 6 };
|
||
|
|
||
|
println!("The value of number is: {}", number);
|
||
|
}
|