mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-25 17:51:01 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1569 72102866-910b-0410-8b05-ffd578937521
9 lines
168 B
Objective-C
9 lines
168 B
Objective-C
#include <Foundation/NSObject.h>
|
|
#include <stdio.h>
|
|
|
|
int main ()
|
|
{
|
|
id o = [NSObject new];
|
|
printf ("Hello from object at 0x%x\n", (unsigned)[o self]);
|
|
exit (0);
|
|
}
|