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