mumble

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

commit df64451be25ad4a71c24b10e12c7688ae6cea6a2
parent 6316fe24263f219105959f2b4dc8caf64069784f
Author: NunoSempere <nuno.sempere@protonmail.com>
Date:   Tue,  2 May 2023 20:47:50 -0400

delete some old code

Diffstat:
Msrc/mumble.c | 11-----------
1 file changed, 0 insertions(+), 11 deletions(-)

diff --git a/src/mumble.c b/src/mumble.c @@ -865,17 +865,6 @@ lispval* evaluate_lispval(lispval* l, lispenv* env) lispval_append_child(operands, l->cell[i]); } - /* - lispval* temp = clone_lispval(l); - lispval* f = pop_lispval(temp, 0); - // pop is destructive. - lispval* operands = temp; - */ - // lispval* operation = clone_lispval(l->cell[0]); - // lispval* operands = lispval_sexpr(); - // for (int i = 1; i < l->count; i++) { - // lispval_append_child(operands, l->cell[i]); - // } if (VERBOSE) printfln("Applying function to operands"); // lispval* answer = lispval_num(42);