mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-28 19:20:51 +00:00
11 lines
185 B
Mathematica
11 lines
185 B
Mathematica
|
#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);
|
||
|
}
|