summaryrefslogtreecommitdiff
path: root/main.hs
diff options
context:
space:
mode:
Diffstat (limited to 'main.hs')
-rw-r--r--main.hs38
1 files changed, 38 insertions, 0 deletions
diff --git a/main.hs b/main.hs
new file mode 100644
index 0000000..e1b975a
--- /dev/null
+++ b/main.hs
@@ -0,0 +1,38 @@
+module Main where
+
+import Control.Monad
+import Data.Either
+import System.Environment
+import System.Exit
+
+import Codegen
+import Parser
+import PShow
+
+
+fromLeft :: Either a b -> a
+fromLeft (Left a) = a
+fromLeft (Right _) = error "Either is not a Left"
+
+fromRight :: Either a b -> b
+fromRight (Right b) = b
+fromRight (Left _) = error "Either is not a Right"
+
+dieShow :: (Show a) => a -> IO ()
+dieShow = die . show
+
+
+main :: IO ()
+main = do
+ args <- getArgs
+ when (length args /= 1) $ die "Pass NL file name as a command-line parameter"
+
+ let fname = args !! 0
+ parseResult <- (\file -> parseProgram file fname) <$> readFile fname
+
+ when (isLeft parseResult) $ dieShow $ fromLeft parseResult
+
+ let ast = fromRight parseResult
+ pprint ast
+
+ either die print $ codegen ast "Module" fname