Monthly Archives: November 1999

Objective-C simple command line program and compilation

I am trying to compile a simple command line for experiment, and it is somehow not as obvious as I thought. Here is a the very simple program I copied somewhere from internet #import <Foundation/foundation.h> int main( int argc, const char* argv[]) { NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; NSObject *object = [[NSObject alloc] init]; [...]

Posted in idea / rant | Leave a comment