There’s another function we have: ``` inline infix...
# announcements
m
There’s another function we have:
Copy code
inline infix fun <T : Any> T?.or(body: () -> T): T {
  return this ?: body()
}
So you can write:
Copy code
val result = given(condition) { expression1 } or { expression2 }
❤️ 3