blob: c1f1c2d97d9b8593664002bb6eb7e410aa6a96ad (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{-# LANGUAGE LambdaCase #-}
module Main
( main
) where
import Lib
import System.Environment ( getArgs )
import Term
reduce :: String -> IO ()
reduce path = do
file <- readFile path
let termified = fromJottary file
putStrLn $ "input: " ++ show termified
normal <- nf termified
putStrLn $ "reduced: " ++ show normal
main :: IO ()
main = do
args <- getArgs
case args of
["reduce", path] -> reduce path
_ -> putStrLn "Usage: jottary [transpile|reduce] <file>"
|