aboutsummaryrefslogtreecommitdiff
path: root/readme.txt
diff options
context:
space:
mode:
Diffstat (limited to 'readme.txt')
-rw-r--r--readme.txt45
1 files changed, 0 insertions, 45 deletions
diff --git a/readme.txt b/readme.txt
deleted file mode 100644
index f187488..0000000
--- a/readme.txt
+++ /dev/null
@@ -1,45 +0,0 @@
1lisk
2----
3
4an educational lisp interpreter written in haskell
5
6
7build and run
8-------------
9
10nix:
11
12 cabal2nix . > default.nix
13 nix-build release.nix
14 ./result/bin/lisk
15
16
17cabal:
18
19 cabal run
20
21
22usage
23-----
24
25$ lisk
26;;; Entering lisk repl ...
27(lisk)> (+ 1 2 3)
28Right 6
29(lisk)> (not (= 2 3))
30Right #t
31(lisk)> '(a b c)
32Right (a b c)
33
34
35
36todo
37----
38
39apart from lines/blocks marked with TODO in the source
40files:
41
42* implement correct double/int interaction (src/Operators.hs)
43* implement boolean operations: and, or
44* rectify Ord implementation for LispNumber (src/Operators.hs)
45* implement property based testing with quickcheck (tests/Properties.hs)