diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2022-09-27 15:10:00 +0300 |
|---|---|---|
| committer | Jan Tuomi <jans.tuomi@gmail.com> | 2022-12-05 14:21:53 +0200 |
| commit | 0a56af62ffa95360587728b82c947a2936743a4c (patch) | |
| tree | 1083bbc78dc961382d0062c44ad9d251b11b5fd7 /app | |
| parent | 2952ecc005466775c9ac70a702da1bbad17a28e5 (diff) | |
Add src position to data structures
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 d31fef2..be5bdf3 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -27,7 +27,7 @@ repl config env = do case minput of Nothing -> return () Just input -> do - result <- lift $ runL config (runInlineScript env input) + result <- lift $ runL config (runInlineScript "<repl>" env input) case result of Left (LException ex) -> do outputStrLn $ "Error: " ++ ex |
