aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/Main.hs
blob: 60a44f0e03fbcbe24d1e8102057959ad5d397c07 (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
33
34
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 birb = transpileBirb ski
  putStrLn $ concatMap show birb

reduce :: String -> IO ()
reduce path = do
  file <- readFile path
  let termified   = fromBirbs file
  let rebirbified = fromTerm termified
  putStrLn $ "input: " ++ rebirbified
  normalBirbs <- nf termified
  let retermified = fromTerm normalBirbs
  putStrLn $ "reduced: " ++ retermified

main :: IO ()
main = do
  args <- getArgs
  case args of
    ["transpile", path] -> transpile path
    ["reduce"   , path] -> reduce path
    _                   -> putStrLn "Usage: birb [transpile|reduce] <file>"