aboutsummaryrefslogtreecommitdiff
path: root/readme.txt
blob: 6a4be580b82d151e9282c1026712934fcdd098bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
lisk
----

an educational lisp interpreter written in haskell


build and run
-------------

nix:
  
  cabal2nix . > default.nix
  nix-build release.nix
  ./result/bin/lisk


cabal:

  cabal run


todo
----

* implement correct double/int interaction (src/Operators.hs)
* implement boolean operations: and, not, or
* write Ord instance for LispNumber (src/Operators.hs)
* implement property based testing with quickcheck (tests/Properties.hs)