Created
August 3, 2016 22:16
-
-
Save travisdachi/d37f3d62b5139928a35f93854b503b00 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class TypicalGrader : Grader { | |
override fun grade(score: Int): String = | |
when (score) { | |
in 80..100 -> "A" | |
in 70..79 -> "B" | |
in 60..69 -> "C" | |
in 50..59 -> "D" | |
in 0..49 -> "F" | |
else -> "???" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment