has anyone played with `run` and `return@run` to e...
# announcements
k
has anyone played with
run
and
return@run
to emulate
goto
? For example
Copy code
run {
    //do something 
    if (condition) return@run 
    //so some more
}
simple smile 1