blob: c4683162ee8b781011045c4b6832e0f93c3b5bd5 (
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
|
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)
-- | Read a "program" from @hin@ handle, evaluate it and dump the result
-- on @hout@.
runEval :: Handle -> Handle -> IO ()
runEval hin hout = do
programText <- Text.unpack . decodeUtf8With lenientDecode <$> BS.hGetContents hin
let ast = read programText
env = mempty
result = eval ast env
BS.hPut
hout
(encodeUtf8 (Text.pack (show result) <> "\n"))
|