More subtle bugfixes

This commit is contained in:
2022-09-08 05:42:39 +01:00
parent 5861602f23
commit a0ea0f7f31
4 changed files with 73 additions and 2 deletions

View File

@@ -69,7 +69,7 @@ void freeLiteral(Literal literal) {
bool _isTruthy(Literal x) {
if (IS_NULL(x)) {
fprintf(stderr, ERROR "ERROR: Null is neither true nor false" RESET);
fprintf(stderr, ERROR "ERROR: Null is neither true nor false\n" RESET);
return false;
}