Robert-van-Engelen / tinylisp

Lisp in 99 lines of C and how to write one yourself. Includes 20 Lisp primitives, garbage collection and REPL. Includes tail-call optimized versions for speed and reduced memory use.
BSD 3-Clause "New" or "Revised" License
851 stars 37 forks source link

Add Missing Lambdas to cadr and caddr Definitions #4

Closed iguessthislldo closed 2 years ago

iguessthislldo commented 2 years ago

Hello, I'm working on my own version of this interpreter in Zig where I noticed this issue trying to load common.lisp with debug logging for an unrelated problem.

Robert-van-Engelen commented 2 years ago

Thanks for the feedback. Looks like I neglected to include lambdas. Nice to see a fix.