apps-projectcenter/PCToolProj/main.m
Robert Slover 611d39e478 Initial revision
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@7258 72102866-910b-0410-8b05-ffd578937521
2000-08-27 19:11:42 +00:00

13 lines
207 B
Objective-C

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