diff options
| author | Jan Tuomi <jan.tuomi@valuemotive.com> | 2022-09-23 15:02:46 +0300 |
|---|---|---|
| committer | Jan Tuomi <jans.tuomi@gmail.com> | 2022-12-05 14:21:53 +0200 |
| commit | 51c3993f0a84b3de57bae480ce7bb14a1408f25e (patch) | |
| tree | 692ecf7b67371f25a5d9d5dbeecc449484dd75e5 /app/Main.hs | |
| parent | 89a6e5d5a4ab10a5dbc70e891499db851896ac7d (diff) | |
Implement parser
Diffstat (limited to 'app/Main.hs')
| -rw-r--r-- | app/Main.hs | 2 |
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 () |
