We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cca65a commit 6c80638Copy full SHA for 6c80638
app/Main.hs
@@ -48,7 +48,7 @@ main = do
48
49
exitWithError :: String -> IO a
50
exitWithError msg =
51
- hPutStrLn stderr ("*** ERROR : " ++ msg)
+ hPutStrLn stderr ("[ERROR] : " ++ msg)
52
>> exitWith (ExitFailure 84)
53
54
formatCompileError :: CompileError -> String
@@ -358,7 +358,7 @@ replLoop = do
358
else do
359
result <- runProgram input
360
case result of
361
- Left err -> putStrLn ("*** ERROR : " ++ err)
+ Left err -> putStrLn ("[ERROR] : " ++ err)
362
Right VUnit -> return ()
363
Right val -> putStrLn (renderValue val)
364
replLoop
0 commit comments