is it possible to `continue` the `while` if I have...
# getting-started
e
is it possible to
continue
the
while
if I have something like:
Copy code
while(..) {
   x?.let{ ... if(y) continue }
?