Is there a guide on how to build simple LISP interpreters?
There are plenty
- https://wiki.c2.com/?ImplementingLisp
- https://mitpress.mit.edu/sites/default/files/sicp/full-text/sicp/book/node76.html - the metacircular interpreter in SICP
- ftp://publications.ai.mit.edu/ai-publications/pdf/AIM-453.pdf The Art of the Interpreter or the Modularity Complex
- https://norvig.com/lispy.html - a very small interpreter in Python
- https://carld.github.io/2017/06/20/lisp-in-less-than-200-lines-of-c.html
- Essentials of Programming Languages by DanielFriedman and Mitchell Wand
and so on