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

https://github.com/qweeze/lisp.py

A toy lisp interpreter
https://github.com/qweeze/lisp.py

Last synced: 3 months ago
JSON representation

A toy lisp interpreter

Awesome Lists containing this project

README

          

# lisp.py

A toy lisp interpreter inspired by Peter Norvig's [lispy](https://norvig.com/lispy.html) and [Make a Lisp](https://github.com/kanaka/mal)

```bash
% python lisp.py
> (define square (lambda (x) (* x x)))
> (map square (list 1 2 3))
(1 4 9)
```