Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lonnen/alonzo
a scheme interpreter written in Haskell
https://github.com/lonnen/alonzo
Last synced: about 1 month ago
JSON representation
a scheme interpreter written in Haskell
- Host: GitHub
- URL: https://github.com/lonnen/alonzo
- Owner: lonnen
- License: other
- Created: 2014-07-17T03:59:30.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-02-16T05:46:03.000Z (almost 10 years ago)
- Last Synced: 2024-04-15T02:58:19.822Z (7 months ago)
- Language: Scheme
- Homepage:
- Size: 238 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
alonzo
------A [Scheme](http://www.schemers.org/Documents/Standards/R5RS/HTML/) interpreter written in Haskell in order to better learn both languages. Development is mostly following Jonathan Tang's "Write yourself a Scheme" book.
getting started
===============Hack on `alonzo.hs` until you're happy.
To build:
```
cabal install -j
./dist/build/alonzo/alonzo
```what's it got?
==============* functions
* lambdas
* lexical scope
* symbols
* strings
* integers
* list manipulation
* assignment
* REPL
* script fileswhat's it missing?
==================
* hygenic macros
* continuations
* test suite
* compliance tests