The nice thing about Kotlin is that (almost) every...
# getting-started
d
The nice thing about Kotlin is that (almost) everything is an expression, which is why you can do the
?: return true
thing, because the type of
return true
is
Nothing
😉
5