]> git.rkrishnan.org Git - yorgey.git/commitdiff
hw5: exercise 1 and 2
authorRamakrishnan Muthukrishnan <ram@rkrishnan.org>
Sun, 21 Dec 2014 10:51:28 +0000 (16:21 +0530)
committerRamakrishnan Muthukrishnan <ram@rkrishnan.org>
Sun, 21 Dec 2014 10:51:28 +0000 (16:21 +0530)
hw5/Calc.hs [new file with mode: 0644]

diff --git a/hw5/Calc.hs b/hw5/Calc.hs
new file mode 100644 (file)
index 0000000..ef4fd2e
--- /dev/null
@@ -0,0 +1,20 @@
+{-# OPTIONS_GHC -Wall #-}
+
+module Calc where
+
+import ExprT
+import Parser
+
+eval :: ExprT -> Integer
+
+-- exercise 1
+eval (Lit n) = n
+eval (Add e1 e2) = eval e1 + eval e2
+eval (Mul e1 e2) = eval e1 * eval e2
+
+-- exercise 2
+evalStr :: String -> Maybe Integer
+-- evalStr s = case (parseExp Lit Add Mul s) of
+--               Just e -> Just (eval e)
+--              Nothing -> Nothing
+evalStr s = fmap eval (parseExp Lit Add Mul s)