module Fun.Compiler where import Control.Exception import Fun.Parser import Fun.Tree parse :: String -> Either String Program -- TODO: Should be tree parse file = case program file of Left a -> Left $ "Invalid code around here:\n" ++ case a of Nothing -> "[No context]" Just str -> str Right (a, b) -> Right a compile :: String -> IO () compile path = do file <- try $ readFile path case file of Left exception -> print (exception :: IOError) Right file -> case parse file of Left err -> putStrLn err Right block -> putStrLn . show $ block