Here is my new main with the error: parse error on input `->' i commented where the error is. Could it be an indentation error somewhere?
main :: IO()
main = do
expression <- evaluate_input
putStrLn $ show $ compute expression
evaluate_input :: IO ()
evaluate_input = do
args <- getArgs
case args of
a:s -> return a
-> do putStrLn "Enter Expression or 'end' to exit calculator"
hFlush stdout
getLine
unless (expression -> "end") $ showExpr expression --error here
where
showExpr expression = do putStrLn $ evaluateExpr expression
evaluate_input
evaluateExpr :: String -> String
evaluateExpr = show
_ ->when you don't care with what it matches with. Also usedowhen you need to put multiple statements after a case pattern match. – Satvik Feb 25 at 18:48_ -> putStrLn "blah"but when you want to put multiple statements you need to use do like_ -> do putStrLn "blah" <nextline and indented> putStrLn "blah2"– Satvik Feb 25 at 19:49