mumble

A Lisp written in C, following the *Build Your Own Lisp* book
Log | Files | Refs | README

commit 8b55ef7b9ae9473bf3a24c1affbe1103dc8939d8
parent 93696d97d468b5b0519d03c01169d08af65e8909
Author: NunoSempere <nuno.sempere@protonmail.com>
Date:   Sun,  7 May 2023 14:59:48 -0400

feat: save progress.

Diffstat:
Mmumble | 0
Msrc/mumble.c | 4++--
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/mumble b/mumble Binary files differ. diff --git a/src/mumble.c b/src/mumble.c @@ -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); } }