orangy
fun x() { var myField : String? = null val lazyValue : String = myField ?: run { myField = ""; myField!! } }