diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2022-09-26 12:30:50 +0300 |
|---|---|---|
| committer | Jan Tuomi <jans.tuomi@gmail.com> | 2022-12-05 14:21:53 +0200 |
| commit | 3f5b15b15fbca3dac18f3f5cb39b7826924ff175 (patch) | |
| tree | 6c009ba1c67db2307aa5f3c1b17a71b93512aa0e /app | |
| parent | 73ae65e04f7c41dd676d3cbaf3885553352f688c (diff) | |
Return evaled ASTs from runInlineScript
Diffstat (limited to 'app')
| -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 f546eae..113a3ba 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -28,7 +28,7 @@ repl config env = do Left (LException ex) -> do outputStrLn $ "Error: " ++ ex repl config env - Right newEnv -> do + Right (newEnv, _) -> do repl config newEnv main :: IO () |
