apps-projectcenter/Modules/Projects/Tool/Resources/main.m

24 lines
291 B
Mathematica
Raw Normal View History

/*
Project: $PROJECTNAME$
Author: $FULLUSERNAME$
Created: $DATE$ by $USERNAME$
*/
#import <Foundation/Foundation.h>
int
main(int argc, const char *argv[])
{
id pool = [[NSAutoreleasePool alloc] init];
// Your code here...
// The end...
[pool release];
return 0;
}