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

12 lines
237 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-05-25 17:29:56 +01:00
fx_string *string = fx_string_create_from_cstr("Hello, world!");
2025-08-16 16:04:11 +01:00
printf("string object = ");
2026-05-25 17:29:56 +01:00
fx_object_to_string(string, fx_stdout, NULL);
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;
}