Skip to content

Instantly share code, notes, and snippets.

@travisdachi
Created August 3, 2016 22:16
Show Gist options
  • Save travisdachi/d37f3d62b5139928a35f93854b503b00 to your computer and use it in GitHub Desktop.
Save travisdachi/d37f3d62b5139928a35f93854b503b00 to your computer and use it in GitHub Desktop.
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