New file.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@2221 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1997-03-04 16:03:51 +00:00
parent 62b2cc43a9
commit f8be18c2df

10
Testing/basic-old.m Normal file
View file

@ -0,0 +1,10 @@
#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);
}