9 lines
146 B
Objective-C
9 lines
146 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
|
|
int main( int argc, const char *argv[] )
|
|
{
|
|
@autoreleasepool {
|
|
[NSApplication sharedApplication];
|
|
}
|
|
return 0;
|
|
}
|