feat: save progress.

This commit is contained in:
NunoSempere 2023-05-07 14:59:48 -04:00
parent 93696d97d4
commit 8b55ef7b9a
2 changed files with 2 additions and 2 deletions

BIN
mumble

Binary file not shown.

View File

@ -507,7 +507,7 @@ void print_lispval_tree(lispval* v, int indent_level)
}
break;
default:
printfln("Error: unknown lispval type\n");
if(VERBOSE) printfln("Error: unknown lispval type\n");
// printfln("%s", v->sym);
}
if (VERBOSE > 1)
@ -552,7 +552,7 @@ void print_lispval_parenthesis(lispval* v)
printf("} ");
break;
default:
printfln("Error: unknown lispval type\n");
if(VERBOSE) printfln("Error: unknown lispval type\n");
// printfln("%s", v->sym);
}
}