blob: b06b42fcf4b7921f5fc69bdcec8b7825f1ace7a9 (
plain)
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
|
import System.Environment( getArgs )
import Control.Exception( ErrorCall(..), Handler(..), catches )
import Unlambda.Parser
import Unlambda.Interpreter
usageString :: String
usageString = "Usage: unlambda <program file>"
program :: IO ()
program = do
args <- getArgs
fileContents <- if (length args /= 1)
then error usageString
else readFile (head args)
case (parseUnlambda fileContents) of
Left x -> putStrLn (show x)
Right x -> unlambda x >>= putStrLn . show
main = catches program
[ Handler ((\e -> putStrLn . show $ e) :: ErrorCall -> IO ()) ]
|