Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alxv07/pylispsicp

MIT's "Structure and Interpretation of Computer Programs, Second Edition" in Python, with self-made Lisp implementation
https://github.com/alxv07/pylispsicp

Last synced: about 2 months ago
JSON representation

MIT's "Structure and Interpretation of Computer Programs, Second Edition" in Python, with self-made Lisp implementation

Awesome Lists containing this project

README

        

# PyLispSICP
A Lisp interpreter written in Python for MIT's "Structure and Interpretation of Computer Programs, Second Edition", written by Harold Abelson, Gerald Jay Sussman, & Julie Sussman.

I've been going through SICP in my freetime, and becoming very interested in the language of Lisp I decided to code my own interpreter to complete the exercises and examples provided by the book. I started coding an interpreter for Common Lisp myself and only after I had finished did I find Peter Norvig's Lis.py scheme interpreter; however, upon review I found my code actually wasn't too different from his and just made some minor improvements.

Status: PyLisp Interpreter is still a WIP, but supports functions, math, boolean logic, and evaluation. See bottom of `.py` files in the `pylisp` directory for example usages.