Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/alxv07/pylispsicp
- Owner: AlxV07
- Created: 2023-02-13T17:39:21.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-25T19:50:59.000Z (11 months ago)
- Last Synced: 2024-01-31T04:24:31.178Z (11 months ago)
- Language: Python
- Homepage:
- Size: 88.9 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.