In the `Control Flow` documentation (<https://kotl...
# announcements
j
In the
Control Flow
documentation (https://kotlinlang.org/docs/reference/control-flow.html), we see the following example:
Copy code
when (x) {
    parseInt(s) -> print("s encodes x")
    else -> print("s does not encode x")
}
What are
x
and
s
supposed to be here?