git @ Cat's Eye Technologies Pixley / fcea46d
Allow sexprs in the head position of a sexpr to be evaluated. Cat's Eye Technologies 11 years ago
1 changed file(s) with 3 addition(s) and 4 deletion(s). Raw diff Collapse all Expand all
170170 sexp = l->body;
171171 done = 0; /* "tail call" */
172172 } else {
173 printf("Cannot evaluate ");
174 dump(h);
175 printf("\n");
176 exit(1);
173 struct value *k = eval(h, env);
174 struct value *m = cons(eval(k, env), t);
175 return eval(m, env);
177176 }
178177 break;
179178 }