document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. //
  2. //  hello.m
  3. //  prog1
  4. //
  5. //  Created by Kurry Tran on 7/2/11.
  6. //  Copyright 2011 Columbia University. All rights reserved.
  7. //
  8.  
  9. #import <Foundation/Foundation.h>
  10.  
  11. int main (int argc, const char * argv[])
  12. {
  13.  
  14.     @autoreleasepool {
  15.        
  16.         // insert code here...
  17.         NSLog(@"Hello World!");
  18.        
  19.     }
  20.     return 0;
  21. }
');