Initial revision

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@92 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
mccallum 1995-03-12 19:35:17 +00:00
parent 8de414570f
commit eded938ac2
4 changed files with 310 additions and 0 deletions

10
Testing/string.m Normal file
View file

@ -0,0 +1,10 @@
#include "objects/String.h"
int main()
{
id s = @"This is a test string";
id s2;
printf("The string [%s], length %d\n", [s cString], [s length]);
exit(0);
}