Kotlin - Control Flow as Expressions
What is the output of the following Kotlin code?
val x = 5
val result = when {
x < 0 -> "Negative"
x == 0 -> "Zero"
x in 1..10 -> "Small"
else -> "Large"
}
println(result)