Last active
December 16, 2015 20:09
-
-
Save ishults/d45d63da0fb47ec875b6 to your computer and use it in GitHub Desktop.
Simple class and enum
This file contains hidden or 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 Dog { | |
Integer age | |
String name | |
Color color | |
} | |
enum Color { | |
BLACK, | |
GOLD, | |
WHITE | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment