Last active
December 10, 2017 11:06
-
-
Save sliskiCode/ce8c9784774025b50ccd7dcfd363dbaf to your computer and use it in GitHub Desktop.
6 magic sugars that can make your Kotlin codebase happier #6
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
enum class Employee { | |
DEV_LEAD, | |
SENIOR_ENGINEER, | |
REGULAR_ENGINEER, | |
JUNIOR_ENGINEER | |
} | |
enum class Contract { | |
PROBATION, | |
PERMANENT, | |
CONTRACTOR, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think you have one comma too much at the end of CONTRACTOR.