aboutsummaryrefslogtreecommitdiffstats
path: root/app/Main.hs
diff options
context:
space:
mode:
authorJan Tuomi <jan.tuomi@valuemotive.com>2022-09-23 15:02:46 +0300
committerJan Tuomi <jans.tuomi@gmail.com>2022-12-05 14:21:53 +0200
commit51c3993f0a84b3de57bae480ce7bb14a1408f25e (patch)
tree692ecf7b67371f25a5d9d5dbeecc449484dd75e5 /app/Main.hs
parent89a6e5d5a4ab10a5dbc70e891499db851896ac7d (diff)
Implement parser
Diffstat (limited to 'app/Main.hs')
-rw-r--r--app/Main.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Main.hs b/app/Main.hs
index 1829c62..978cafc 100644
--- a/app/Main.hs
+++ b/app/Main.hs
@@ -26,7 +26,7 @@ repl config = do
result <- lift $ runExceptT $ runReaderT (runInlineScript input) config
case result of
Left (LException ex) -> outputStrLn $ "Error: " ++ ex
- Right () -> outputStrLn $ input
+ Right () -> return ()
repl config
main :: IO ()