mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-26 18:21:04 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@92 72102866-910b-0410-8b05-ffd578937521
10 lines
167 B
Objective-C
10 lines
167 B
Objective-C
#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);
|
|
}
|