<@U0B90HM1T> You can write it like this: ``` prod...
# coroutines
e
@kevin You can write it like this:
Copy code
producer1().poll()?.also { value1 -> /* do something with it */ } ?: // reads as "or else"
producer2().poll()?.also { value2 -> /* do something with it */ } ?: 
run { /* default */ }