aboutsummaryrefslogtreecommitdiff
path: root/readme.txt
diff options
context:
space:
mode:
authorAkshay <[email protected]>2020-10-10 06:45:42 +0100
committerAkshay <[email protected]>2020-10-10 06:45:42 +0100
commitf74d9c9bb3722fd20cea000b4f0c2a74be289a9c (patch)
treeceec2de1fdc82f6f2e9693449b969c24925fac8e /readme.txt
parent5097a20545bbeeafec191f97e9d0ae3d215ada90 (diff)
add quasiquote, unquote modifiers, basic boolean operations
add more info to readme
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)