Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. int main (int argc, const char * argv[])
  2. {
  3.     NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];    
  4.     NSLog(@"Hello, World!");
  5.     [pool drain];
  6.     return 0;
  7. }
  8.