in the case of `while(false)`, the value would not...
# language-proposals
j
in the case of
while(false)
, the value would not be set and you'd have to do something like:
val k = while(false) {} ?: "defaultValue"