mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-22 19:31:56 +00:00
14 lines
207 B
Mathematica
14 lines
207 B
Mathematica
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
int main(int argc, const char *argv[]) {
|
||
|
id pool = [[NSAutoreleasePool alloc] init];
|
||
|
|
||
|
// Your code here...
|
||
|
|
||
|
// The end...
|
||
|
[pool release];
|
||
|
|
||
|
exit(0);
|
||
|
return 0;
|
||
|
}
|