- #import <Foundation/Foundation.h>
- int main (int argc, const char * argv[]) {
- NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
- int answer, result;
- // Compute result
- answer = 100;
- result = answer - 10;
- // Display result
- NSLog(@"The result is %i\n", result + 5);
- [pool drain];
- return 0;
- }