blob: cbcaeac054e371a2e877ff96d7fd9768d9f3f827 (
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
25
26
27
28
29
30
31
32
|
module Main
( main
) where
import Lib
import System.Environment ( getArgs )
import Term
import Transpile
transpile :: String -> IO ()
transpile path = do
file <- readFile path
let term = fromBLC file
let ski = transpileSKI term
let jottary = transpileJottary ski
putStrLn jottary
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
["transpile", path] -> transpile path
["reduce" , path] -> reduce path
_ -> putStrLn "Usage: jottary [transpile|reduce] <file>"
|