jmmk
06/08/2017, 11:53 PMControl Flow
documentation (https://kotlinlang.org/docs/reference/control-flow.html), we see the following example:
when (x) {
parseInt(s) -> print("s encodes x")
else -> print("s does not encode x")
}
What are x
and s
supposed to be here?