mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-21 02:41:18 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@16503 72102866-910b-0410-8b05-ffd578937521
13 lines
208 B
Objective-C
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;
|
|
}
|