apps-projectcenter/PCToolProj/main.m

14 lines
207 B
Mathematica
Raw Normal View History

#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;
}