Does kotlin have a null type? Can I express this i...
# announcements
k
Does kotlin have a null type? Can I express this in Kotlin?
fun foo(): null = null
I can't really think of a use case, I was just wondering.
d
Nothing?
only has one value:
null
.
k
Ah, interesting.