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