Now let’s honestly think, how all these madness is...
# language-proposals
o
Now let’s honestly think, how all these madness is any better than
Copy code
var k : String? = null
for (i in 1..10) {
   k = "blah-$i"
   if (i == 3) break
}
return k
5