Kotlin - Null Safety
Consider this Kotlin code calling a Java method returning a platform type:
What happens if
val length = javaObject.getName().length
What happens if
getName() returns null at runtime?