Summary
Dollop is proof-of-concept Lisp/Scheme interpreter. As such, it's very minimal, having only a few basic features and functions, and its main purpose is to explore and demonstrate interpreter features such as batch interpretation, tail recursion, and continuations.
Requirements
- Python 3.0
Download
Get it at github.
Documentation
For now, there's this blog post explaining how the proof-of-concept works: A dollop of Lisp
Latest updates
- 2009-06-17: Added
quote,eval,apply. (The last two employ TCO as well.)
- 2009-06-16: Continuations now work. (Well, at least for simple test cases...)