diff --git a/object-test/simple.c b/object-test/simple.c new file mode 100644 index 0000000..59225de --- /dev/null +++ b/object-test/simple.c @@ -0,0 +1,11 @@ +#include + +int main(void) +{ + b_string *string = B_CSTR("Hello, world!"); + printf("string object = "); + b_object_to_string(string, b_stdout); + printf("\n"); + b_release(string); + return 0; +}