Skip to content

Instantly share code, notes, and snippets.

@tasaquino
Created March 5, 2018 18:26
Show Gist options
  • Save tasaquino/d43308df29308f9d426529c7f22b1d9e to your computer and use it in GitHub Desktop.
Save tasaquino/d43308df29308f9d426529c7f22b1d9e to your computer and use it in GitHub Desktop.
Kotlin - Simple Enum Example
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