summaryrefslogtreecommitdiff
path: root/src/SemanticMain.hs
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2014-04-08 15:06:40 +1000
committerJed Barber <jjbarber@y7mail.com>2014-04-08 15:06:40 +1000
commit03d38eb3190eb5e51fb18847fe0792013285bde5 (patch)
tree1060d26d3042b5c0c5b1c027fac45fe87f3d685a /src/SemanticMain.hs
parentf2c4e4614613ede497f19ef79dc7dc157eaca834 (diff)
Reorganising source code
Diffstat (limited to 'src/SemanticMain.hs')
-rw-r--r--src/SemanticMain.hs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/SemanticMain.hs b/src/SemanticMain.hs
new file mode 100644
index 0000000..c07fc8c
--- /dev/null
+++ b/src/SemanticMain.hs
@@ -0,0 +1,12 @@
+import System.Environment( getArgs )
+import Text.Printf
+import Library.Parse
+import Library.Semantic
+
+
+
+main = do
+ args <- getArgs
+ list <- getLines (head args)
+ let result = doSemanticCheck (map (stripReturn) list)
+ printf result