Skip to content

Instantly share code, notes, and snippets.

@nomisRev
Created July 10, 2017 16:36
Show Gist options
  • Save nomisRev/1f1abea91ffa0c422a4eab1cca7909d5 to your computer and use it in GitHub Desktop.
Save nomisRev/1f1abea91ffa0c422a4eab1cca7909d5 to your computer and use it in GitHub Desktop.
sealed class GameOutcome {
data class Won(val loserName: String): GameOutcome()
data class Lost(val winnerName: String): GameOutcome()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment