Kotlin Variable Posshiblement Null
var message: String? = "My message can possibly be null !"
message?.toUpperCaset()
Xerothermic Xenomorph
var message: String? = "My message can possibly be null !"
message?.toUpperCaset()
var message: String? = "My message can possibly be null !"
if (message != null) message.toUpperCase()