kirillrakhman
when (x) { 0, 1 -> print("foo") else -> print("otherwise") }
when (x) { 0 -> print("foo") 1, else -> print("otherwise") }