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

13 lines
217 B
Mathematica
Raw Normal View History

2013-04-10 22:43:41 -07:00
#import <Cocoa/Cocoa.h>
int main( int argc, const char *argv[] )
{
NSAutoreleasePool *pool;
pool = [[NSAutoreleasePool alloc] init];
NSApp = [NSApplication sharedApplication];
[pool release];
return 0;
}