Files
fx/test/ds/simple.c

12 lines
215 B
C
Raw Normal View History

2026-03-16 10:35:43 +00:00
#include <fx/ds/string.h>
2025-08-16 16:04:11 +01:00
int main(void)
{
2026-03-16 10:35:43 +00:00
fx_string *string = FX_CSTR("Hello, world!");
2025-08-16 16:04:11 +01:00
printf("string object = ");
2026-03-16 10:35:43 +00:00
fx_object_to_string(string, fx_stdout);
2025-08-16 16:04:11 +01:00
printf("\n");
2026-03-16 10:35:43 +00:00
fx_string_unref(string);
2025-08-16 16:04:11 +01:00
return 0;
}