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

10 lines
146 B
Mathematica
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
#import <Cocoa/Cocoa.h>
int main( int argc, const char *argv[] )
{
2014-04-02 16:56:35 +00:00
@autoreleasepool {
[NSApplication sharedApplication];
}
2013-04-10 22:43:41 -07:00
return 0;
}