Files
fx/fx.collections/test/simple.c
T
2026-05-25 17:29:56 +01:00

12 lines
237 B
C

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