Files
fx/fx.collections/test/simple.c
T

12 lines
212 B
C
Raw Normal View History

2026-05-05 21:17:21 +01:00
#include <fx/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;
}