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