Skip to content

Instantly share code, notes, and snippets.

@brunogamacatao
Created November 29, 2013 20:46
Show Gist options
  • Save brunogamacatao/7711816 to your computer and use it in GitHub Desktop.
Save brunogamacatao/7711816 to your computer and use it in GitHub Desktop.
// First program example
#import <Foundation/Foundation.h>
int main (int argc, const char * argv[])
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSLog (@"Hello, World!");
[pool drain];
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment