|
|
|
|
|
by runevault
680 days ago
|
|
Depends on the language. if you have destructuring you can do it all at once. So like I believe you can do this in Rust (haven't written it in a while, I know it has destructuring of tuples) let (a, b) = if (condition) { (1, "hello") } else { (3,"goodbye") } |
|