Skip to content

Commit ad542a3

Browse files
committed
Added tests. Small improvements to README
1 parent c9eab32 commit ad542a3

7 files changed

+351
-10
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Minilisp
22

3-
Minilisp is a very simple Lisp-like interactive environment based on the well-known paper by John McCarty (http://www-formal.stanford.edu/jmc/recursive.pdf). Minilisp is written in Haskell and is an example of how intepreter/compiler design can be easy using functional programming.
3+
Minilisp is a Lisp-like interactive environment for on-the-fly function prototyping. Based on the well-known paper by John McCarthy (http://www-formal.stanford.edu/jmc/recursive.pdf) Minilisp aims to be minimal and self-contained but expandable.
44

55
# Features
66

package.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,12 @@ dependencies:
2424
- haskeline >= 0.7 && < 0.8
2525
- hspec >= 2.6.1
2626
- containers >= 0.6.0.1
27+
- QuickCheck >= 2.12.6.1
2728

2829
library:
2930
source-dirs:
3031
- src
31-
32+
3233
executables:
3334
minilisp-exe:
3435
main: Main.hs

src/Interpreter.hs

+33
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,36 @@ evalGreater env ctx x y = do
268268
False -> return (env, ctx, F)
269269
_ -> runtimeError "Type mismatch"
270270

271+
evalOr :: Env -> Ctx -> SExpr -> SExpr -> Effect (Env, Ctx, SExpr)
272+
evalOr env ctx x y = do
273+
(_, _, x') <- eval env ctx x
274+
(_, _, y') <- eval env ctx y
275+
case (x', y') of
276+
(T, T) -> return (env, ctx, T)
277+
(F, T) -> return (env, ctx, T)
278+
(T, F) -> return (env, ctx, T)
279+
(F, F) -> return (env, ctx, F)
280+
_ -> runtimeError "Non boolean values"
281+
282+
evalAnd :: Env -> Ctx -> SExpr -> SExpr -> Effect (Env, Ctx, SExpr)
283+
evalAnd env ctx x y = do
284+
(_, _, x') <- eval env ctx x
285+
(_, _, y') <- eval env ctx y
286+
case (x', y') of
287+
(T, T) -> return (env, ctx, T)
288+
(T, F) -> return (env, ctx, F)
289+
(F, T) -> return (env, ctx, F)
290+
(F, F) -> return (env, ctx, F)
291+
_ -> runtimeError "Non boolean values"
292+
293+
evalNot :: Env -> Ctx -> SExpr -> Effect (Env, Ctx, SExpr)
294+
evalNot env ctx x = do
295+
(_, _, x') <- eval env ctx x
296+
case x' of
297+
T -> return (env, ctx, F)
298+
F -> return (env, ctx, T)
299+
_ -> runtimeError "Non boolean value"
300+
271301
-- evaluation function, the core of the lisp interpreter
272302
eval :: Env -> Ctx -> SExpr -> Effect (Env, Ctx, SExpr)
273303
-- evaluation of atomic values (self-evaluation)
@@ -303,6 +333,9 @@ eval env ctx (DIV x y) = evalDiv env ctx x y
303333
eval env ctx (MOD x y) = evalMod env ctx x y
304334
eval env ctx (LESS x y) = evalLess env ctx x y
305335
eval env ctx (GREATER x y) = evalGreater env ctx x y
336+
eval env ctx (AND x y) = evalAnd env ctx x y
337+
eval env ctx (OR x y) = evalOr env ctx x y
338+
eval env ctx (NOT x) = evalNot env ctx x
306339
-- evaluation of non built-in functions
307340
eval env ctx (Pair f x) = do
308341
(env', ctx', f') <- eval env ctx f

src/Parser.hs

+3
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,9 @@ compile (Node (Leaf (SymbType "/")) (Node x (Node y Empty))) = DIV (compile x) (
8585
compile (Node (Leaf (SymbType "%")) (Node x (Node y Empty))) = MOD (compile x) (compile y)
8686
compile (Node (Leaf (SymbType "<")) (Node x (Node y Empty))) = LESS (compile x) (compile y)
8787
compile (Node (Leaf (SymbType ">")) (Node x (Node y Empty))) = GREATER (compile x) (compile y)
88+
compile (Node (Leaf (SymbType "or")) (Node x (Node y Empty))) = OR (compile x) (compile y)
89+
compile (Node (Leaf (SymbType "and")) (Node x (Node y Empty))) = AND (compile x) (compile y)
90+
compile (Node (Leaf (SymbType "not")) (Node x Empty)) = NOT (compile x)
8891

8992
compile (Node x y) = Pair (compile x) (compile y)
9093

src/SExpr.hs

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ data SExpr = Nil
88
| Double Double
99
| String String
1010
| Symb String
11-
| Pair SExpr SExpr
1211
| Lambda [SExpr] SExpr
12+
| Pair SExpr SExpr
1313
| CAR SExpr
1414
| CDR SExpr
1515
| CONS SExpr SExpr
@@ -28,6 +28,9 @@ data SExpr = Nil
2828
| MOD SExpr SExpr
2929
| LESS SExpr SExpr
3030
| GREATER SExpr SExpr
31+
| OR SExpr SExpr
32+
| AND SExpr SExpr
33+
| NOT SExpr
3134
deriving Eq
3235

3336
instance Show SExpr where

0 commit comments

Comments
 (0)