Skip to content

Instantly share code, notes, and snippets.

@miwillhite
Created December 14, 2013 01:07
Show Gist options
  • Select an option

  • Save miwillhite/7954341 to your computer and use it in GitHub Desktop.

Select an option

Save miwillhite/7954341 to your computer and use it in GitHub Desktop.
#import <Foundation/Foundation.h>
int main(int argc, char *argv[]) {
@autoreleasepool {
typedef enum {
helloBlahType,
byeBlahType
} BlahType;
BlahType blah = 999999;
NSLog(@"%d", blah);
}
}
//=> 999999
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment