Skip to content

Instantly share code, notes, and snippets.

@jerstlouis
Last active October 4, 2016 21:17
Show Gist options
  • Save jerstlouis/37f2debb437b19d47f3c642141027108 to your computer and use it in GitHub Desktop.
Save jerstlouis/37f2debb437b19d47f3c642141027108 to your computer and use it in GitHub Desktop.
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