Skip to content

Latest commit

 

History

History
48 lines (36 loc) · 1.03 KB

README.md

File metadata and controls

48 lines (36 loc) · 1.03 KB

blaise

Slava Akhmechet's Lisp (implemented in Haskell) from 2006

Intro

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.

Dependencies

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.

Building

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
>