aboutsummaryrefslogtreecommitdiff
path: root/readme.txt
diff options
context:
space:
mode:
Diffstat (limited to 'readme.txt')
-rw-r--r--readme.txt21
1 files changed, 19 insertions, 2 deletions
diff --git a/readme.txt b/readme.txt
index 6a4be58..f187488 100644
--- a/readme.txt
+++ b/readme.txt
@@ -19,10 +19,27 @@ cabal:
19 cabal run 19 cabal run
20 20
21 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
22todo 36todo
23---- 37----
24 38
39apart from lines/blocks marked with TODO in the source
40files:
41
25* implement correct double/int interaction (src/Operators.hs) 42* implement correct double/int interaction (src/Operators.hs)
26* implement boolean operations: and, not, or 43* implement boolean operations: and, or
27* write Ord instance for LispNumber (src/Operators.hs) 44* rectify Ord implementation for LispNumber (src/Operators.hs)
28* implement property based testing with quickcheck (tests/Properties.hs) 45* implement property based testing with quickcheck (tests/Properties.hs)