aboutsummaryrefslogtreecommitdiff
path: root/src/assignment.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/assignment.hs')
-rw-r--r--src/assignment.hs11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/assignment.hs b/src/assignment.hs
deleted file mode 100644
index c086280..0000000
--- a/src/assignment.hs
+++ /dev/null
@@ -1,11 +0,0 @@
-module Assignment where
-
-import qualified Expr as E
-
-data Assignment
- = Variable String E.Expr
- | Function String String E.Expr
-
-instance Show Assignment where
- show (Variable name e) = name ++ " = " ++ show e
- show (Function name arg e) = name ++ "(" ++ arg ++ ") = " ++ show e