Or in an expression like this: ```val a = b ?: tho...
# announcements
k
Or in an expression like this:
Copy code
val a = b ?: thow Exceprion()
that just gets compiled to
Copy code
if (b == null) throw Exception()
val a = b
and the
Nothing
type was just some syntax sugar.