aboutsummaryrefslogtreecommitdiffhomepage
path: root/app
diff options
context:
space:
mode:
authorMarvin Borner2023-10-03 16:29:50 +0200
committerMarvin Borner2023-10-03 16:29:50 +0200
commit9825d231a90e0763218bb956f7894f24ab4836db (patch)
tree0e27fc8d41e8976ea6e738f09b7fe5de00fa987e /app
Initial commit
Diffstat (limited to 'app')
-rw-r--r--app/Main.hs23
1 files changed, 23 insertions, 0 deletions
diff --git a/app/Main.hs b/app/Main.hs
new file mode 100644
index 0000000..913bbb2
--- /dev/null
+++ b/app/Main.hs
@@ -0,0 +1,23 @@
+module Main
+ ( main
+ ) where
+
+import Lib
+import System.Environment ( getArgs )
+import Term
+
+reduce :: String -> IO ()
+reduce path = do
+ file <- readFile path
+ let termified = fromJotter file
+ putStrLn $ "input: " ++ show termified
+ normal <- nf termified
+ putStrLn $ "reduced: " ++ show normal
+
+main :: IO ()
+main = do
+ args <- getArgs
+ case args of
+ -- ["transpile", path] -> transpile path
+ ["reduce", path] -> reduce path
+ _ -> putStrLn "Usage: jotter [transpile|reduce] <file>"