Merge branch 'main' into feature/new-object-system

This commit is contained in:
2025-10-15 11:13:00 +01:00
227 changed files with 8252 additions and 2129 deletions

View File

@@ -32,7 +32,7 @@ int main(void)
b_dict_iterator it;
b_dict_foreach(&it, dict)
{
printf("item %zu: %s=%d\n", it.i, it.key,
printf("item %zu: %s=%d\n", it.i, b_string_ptr(it.key),
b_number_get_int(B_NUMBER(it.value)));
}