Skip to content

Instantly share code, notes, and snippets.

@mdippery
Created March 26, 2014 20:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mdippery/9792183 to your computer and use it in GitHub Desktop.
Save mdippery/9792183 to your computer and use it in GitHub Desktop.
#import <Foundation/Foundation.h>
int main (int argc, char const *argv[])
{
@autoreleasepool {
id obj = [[nil alloc] init];
NSLog(@"%@ (%p)", obj, obj);
[obj release];
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment