aboutsummaryrefslogtreecommitdiff
path: root/src/statement.hs
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-03-16 14:15:42 +0100
committerCharles <sircharlesaze@gmail.com>2020-03-16 14:15:42 +0100
commit8c8f6155f1b05230c271059c52a503211aec872b (patch)
tree53626fa32ad3f6178b42a9dc5db588ee01277cd5 /src/statement.hs
parentd17423cba7c15a26f835a6fa578ecb48b80d8aab (diff)
downloadcomputorv2-8c8f6155f1b05230c271059c52a503211aec872b.tar.gz
computorv2-8c8f6155f1b05230c271059c52a503211aec872b.tar.bz2
computorv2-8c8f6155f1b05230c271059c52a503211aec872b.zip
file Renaming, basic REPL
Diffstat (limited to 'src/statement.hs')
-rw-r--r--src/statement.hs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/statement.hs b/src/statement.hs
deleted file mode 100644
index 75dfdb4..0000000
--- a/src/statement.hs
+++ /dev/null
@@ -1,14 +0,0 @@
-module Statement where
-
-import Assignment
-import Expr
-
-
-data Statement
- = SAssignment Assignment
- | SExpr Expr
-
-instance Show Statement where
- show (SAssignment a) = show a
- show (SExpr e) = show e
-