Created
March 13, 2022 14:33
-
-
Save Deleplace/d3a54fcbd04e98231b0f6d5ad83e75cc to your computer and use it in GitHub Desktop.
Declare an enumeration
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 Suit { | |
SPADES, | |
HEARTS, | |
DIAMONDS, | |
CLUBS, | |
} | |
void main() { | |
print(Suit.DIAMONDS); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment