apps-projectcenter/PCToolProj/main.m
Sergii Stoian cbda1249f8 #import fix
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@16503 72102866-910b-0410-8b05-ffd578937521
2003-04-21 14:53:10 +00:00

13 lines
208 B
Objective-C

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