From 50958fc5f2aad6f72fa8b948f8fa33713beb91a1 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Tue, 18 Feb 2014 01:10:00 +1100 Subject: Added basic command line programs to invoke Fractran and Thue interpreters --- thue.hs | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 thue.hs (limited to 'thue.hs') diff --git a/thue.hs b/thue.hs new file mode 100644 index 0000000..6630e6d --- /dev/null +++ b/thue.hs @@ -0,0 +1,38 @@ + +import System.Environment( getArgs ) +import Data.Typeable +import qualified Control.Exception +import Thue.Parser +import Thue.Interpreter + + +data ThueException = ThueException { errString :: String } + deriving (Show, Typeable) + +instance Control.Exception.Exception ThueException + + + +usageString :: String +usageString = "Usage: thue " + + + +program :: IO () +program = do + args <- getArgs + fileContents <- if (length args /= 1) + then Control.Exception.throw (ThueException usageString) + else readFile (head args) + + case (parseThue fileContents) of + Left x -> putStrLn (show x) + Right x -> (thue x) >>= (putStrLn . show) + + + +main = Control.Exception.catch program handler + where + handler :: ThueException -> IO () + handler err = putStrLn (errString err) + -- cgit