Skip to content

Instantly share code, notes, and snippets.

@neror
Created July 12, 2010 14:44
Show Gist options
  • Save neror/472546 to your computer and use it in GitHub Desktop.
Save neror/472546 to your computer and use it in GitHub Desktop.
#import <Foundation/Foundation.h>
void PrintPathInfo(); //section 1
void PrintProcessInfo(); //section 2
void PrintBookmarkInfo(); //section 3
void PrintIntrospectionInfo(); //section 4
int main (int argc, const char * argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
// Methods
PrintPathInfo();
PrintProcessInfo();
PrintBookmarkInfo();
PrintIntrospectionInfo();
[pool drain];
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment