Contact: aviboots(AT)netvision.net.il
32,310 questions
42,485 answers
573 users
#import <Foundation/Foundation.h> int main (int argc, const char *argv[]) { NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; int x = 10; int y = 25; NSLog(@"x + y = %i", (x+y)); [pool drain]; return 0; } /* run: x + y = 35 */