From 0e5d2f7dabc9bd0b162bfc483a2a3247721eafb9 Mon Sep 17 00:00:00 2001 From: Sean Gillespie <sean@mistersg.net> Date: Sat, 27 Jan 2018 18:50:26 -0500 Subject: [PATCH] Make sure we print a newline after the evalutation result --- app/Main.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Main.hs b/app/Main.hs index 615aabe..b5f7f34 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -113,7 +113,7 @@ eval f str = do Left err -> shellPutErrLn err Right (result, globals') -> do putShellSt globals' - shellPutStr result + shellPutStrLn result -- | Get the current version version' :: String -- GitLab