Kotlin - Control Flow as Expressions
What will the following Kotlin code print?
val score = 85
val grade = when (score) {
in 90..100 -> "A"
in 80..89 -> "B"
else -> "C"
}
println(grade)