Kotlin - Control Flow as Expressions
What is the output of this Kotlin code?
val x = "hello"
val result = when (x.length) {
3 -> "Three"
5 -> "Five"
else -> "Other"
}
println(result)