test: move leftover object tests to ds-test

This commit is contained in:
2025-10-26 09:38:45 +00:00
parent 75e9291da3
commit cd54a4f755
2 changed files with 3 additions and 3 deletions

11
ds-test/simple.c Normal file
View File

@@ -0,0 +1,11 @@
#include <blue/ds/string.h>
int main(void)
{
b_string *string = B_CSTR("Hello, world!");
printf("string object = ");
b_object_to_string(string, b_stdout);
printf("\n");
b_string_unref(string);
return 0;
}