Files
fx/test/ds/simple.c
2026-03-16 10:35:43 +00:00

12 lines
215 B
C

#include <fx/ds/string.h>
int main(void)
{
fx_string *string = FX_CSTR("Hello, world!");
printf("string object = ");
fx_object_to_string(string, fx_stdout);
printf("\n");
fx_string_unref(string);
return 0;
}