blob: 28b6f0146265c484d4f135cc3d96f77e2b624c31 (
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
|
module Minilang.IO where
import qualified Data.ByteString as BS
import qualified Data.Text as Text
import Data.Text.Encoding
( decodeUtf8With,
encodeUtf8,
)
import Data.Text.Encoding.Error (lenientDecode)
import Minilang.Lambda.Eval (eval)
import System.IO (Handle)
import Minilang.Lambda.Parser (parse, desugar)
-- | Read a "program" from @hin@ handle, evaluate it and dump the result
-- on @hout@.
runEval :: Handle -> Handle -> IO ()
runEval hin hout = do
programText <- decodeUtf8With lenientDecode <$> BS.hGetContents hin
let parsed = parse programText
result = case parsed of
Left err -> show err
Right ast ->
let term = desugar ast
env = mempty
in show $ eval term env
BS.hPut
hout
(encodeUtf8 (Text.pack result <> "\n"))
|