Created
March 5, 2018 18:26
-
-
Save tasaquino/d43308df29308f9d426529c7f22b1d9e to your computer and use it in GitHub Desktop.
Kotlin - Simple Enum Example
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
enum class House { | |
BARATHEON, | |
BOLTON, | |
LANNISTER, | |
MARTELL, | |
REDWYNE, | |
STARK, | |
TARGARYEN, | |
TULLY; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment