Skip to content

stevemccartney/lisp-in-python

This branch is up to date with nicolashahn/lisp-in-python:master.

Repository files navigation

lisp-in-python

Lisp interpreter written in Python (2.7)

With inspiration from Peter Norvig

Run REPL:

$ ./repl
lisp-in-python
> (define x 4)
nil
> (define sq (lambda (x) (* x x)))
nil
> (sq 3)
9
> x
4

To run tests:

$ ./test
....................
----------------------------------------------------------------------
Ran 20 tests in 0.002s

OK

About

Lisp interpreter written in Python

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 78.9%
  • NewLisp 21.1%