cvalue.c:printValue renamed to cosmoV_printValue

This commit is contained in:
2023-12-28 22:52:20 -06:00
parent 0df56bd42a
commit 4816e64612
8 changed files with 12 additions and 12 deletions

View File

@@ -18,7 +18,7 @@ int cosmoB_print(CState *state, int nargs, CValue *args)
CObjString *str = cosmoV_toString(state, args[i]);
printf("%s", cosmoO_readCString(str));
} else { // else, thats pretty expensive for primitives, just print the raw value
printValue(args[i]);
cosmoV_printValue(args[i]);
}
}
printf("\n");