Last active
October 4, 2016 21:17
-
-
Save jerstlouis/37f2debb437b19d47f3c642141027108 to your computer and use it in GitHub Desktop.
This file contains 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 MyEnum { foo, bar, cool }; | |
int myArray[MyEnum] = { 3, 4, 5 }; | |
class App : Application | |
{ | |
void Main() | |
{ | |
MyEnum i; | |
for(i = 0; i < MyEnum::enumSize; i++) | |
PrintLn(i, ": ", myArray[i]); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment