cool thing about kotlin is that extension methods ...
# announcements
p
cool thing about kotlin is that extension methods can be defined on nullable types, so you can have this:
Copy code
val s: String? = "hello"
s.isNullOrEmpty()
this will never throw NPE