fun String?.orLabel(): String = this ?: "missing" fun main() { val label: String? = null println(label.orLabel()) println(label?.orLabel()) }