Created with <3 with dartpad.dev.
Created
September 12, 2023 02:18
-
-
Save dnys1/d02674134c44882884c661d5a4e9b524 to your computer and use it in GitHub Desktop.
primal-lantern-1698
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 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