Kotlin - Control Flow as Expressions
Find the problem in this Kotlin code snippet:
val score = 85
when {
score >= 90 -> println("A")
score >= 80 -> println("B")
score >= 70 -> println("C")
else println("F")
}