Skip to content

Instantly share code, notes, and snippets.

@dnys1
Created September 12, 2023 02:18
Show Gist options
  • Save dnys1/d02674134c44882884c661d5a4e9b524 to your computer and use it in GitHub Desktop.
Save dnys1/d02674134c44882884c661d5a4e9b524 to your computer and use it in GitHub Desktop.
primal-lantern-1698
enum ABC { a, b, c }
void main() {
switch (ABC.a) {
case ABC.a:
print('a');
case != ABC.a:
print('b or c');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment