Skip to content

Instantly share code, notes, and snippets.

@Deleplace
Created March 13, 2022 14:33
Show Gist options
  • Save Deleplace/d3a54fcbd04e98231b0f6d5ad83e75cc to your computer and use it in GitHub Desktop.
Save Deleplace/d3a54fcbd04e98231b0f6d5ad83e75cc to your computer and use it in GitHub Desktop.
Declare an enumeration
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