Slava Akhmechet's Lisp (implemented in Haskell) from 2006
This project is described in Slava's related post on the topic. There is also some related material discussing Slava's motivation for working on this project. Furthermore, the article has been compied over to the wiki in the hopes of preserving it.
You will need Haskell installed on your system. Download:
Then install cabal-dev
:
$ cabal install cabal-dev
You may need to add the cabel-dev bin
directory to your $PATH
.
Get the source:
$ git clone https://github.com/haskell-lisp/blaise.git
$ cd blaise
Build, install in, and run from a local dev env:
$ cabal-dev install
$ ./cabal-dev/bin/blaise
At which point you're off and running!
> (* (+ 1 2 3 4 5 6) 2)
42
>