RosettaCodeData/Task/Empty-program/Objective-C/empty-program-2.m

13 lines
217 B
Objective-C

#import <Cocoa/Cocoa.h>
int main( int argc, const char *argv[] )
{
NSAutoreleasePool *pool;
pool = [[NSAutoreleasePool alloc] init];
NSApp = [NSApplication sharedApplication];
[pool release];
return 0;
}