Skip to content

haskell-lisp/blaise

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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
>