mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-25 09:41:15 +00:00
10 lines
168 B
Mathematica
10 lines
168 B
Mathematica
|
#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);
|
||
|
}
|