Kotlin - Control Flow as Expressions
What is the output of this Kotlin code?
val score = 75 val grade = if (score >= 90) "A" else if (score >= 80) "B" else if (score >= 70) "C" else "F" println(grade)
