Well, you can use the elvis operator to do somethi...
# announcements
r
Well, you can use the elvis operator to do something else if the value is null:
optional?.let { unwrapped -> doSmth() } ?: doSmthElse()