what is the best way to do nothing in `when` switc...
# getting-started
t
what is the best way to do nothing in
when
switch. For example:
Copy code
kotlin
when (some) {
  case1 -> doSmth1()
  case2 -> justContinueAfterWhen()
  else -> doOnElse()
}