#import <Foundation/Foundation.h>

int main() {
	NSAutoreleasePool *pool = [NSAutoreleasePool new];
	NSString *make = @"Porsche";
    NSString *model = @"911";
    int year = 1968;
    NSString *message = [NSString stringWithFormat:
        @"That's a %@ %@ from %d!", make, model, year];
    NSLog(@"%@", message);
	[pool drain];
	return 0;
}

