Jak zrobić coś innego po wypuszczeniu Kotlin

<expr>?.also { a ->
    // then-block
} ?: run {
    // else-block
}
Stockholm