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