meta: re-organise tests

This commit is contained in:
2026-05-04 16:37:06 +01:00
parent 716b939d4f
commit 18c9d30c60
40 changed files with 161 additions and 25 deletions
+11
View File
@@ -0,0 +1,11 @@
#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;
}