Advertisement
insufficient

Objective C Hello World

Oct 2nd, 2021
1,195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #import <Foundation/Foundation.h>
  2.  
  3. int main (int argc, const char * argv[])
  4. {
  5.         NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
  6.         NSLog (@"Hello World");
  7.         [pool drain];
  8.         return 0;
  9. }
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement