mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-30 18:53:39 +00:00
24 lines
345 B
Rust
24 lines
345 B
Rust
fn main() {
|
|
match option {
|
|
None => {
|
|
if condition {
|
|
true
|
|
} else {
|
|
false
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
match option {
|
|
None => {
|
|
if condition {
|
|
true
|
|
} else {
|
|
false
|
|
}
|
|
}
|
|
}
|
|
}
|