Skip to content

nicolashahn/lisp-in-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 

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