12 lines
211 B
C
12 lines
211 B
C
#include <blue/object/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_release(string);
|
|
return 0;
|
|
}
|