still, I can write ``` when (x) { 0, 1 -> pri...
# announcements
k
still, I can write
Copy code
when (x) {
  0, 1 -> print("foo")
  else -> print("otherwise")
}
why can't I write
Copy code
when (x) {
  0 -> print("foo")
  1, else -> print("otherwise")
}