diff --git a/questioner.hs b/questioner.hs index 9b5d3c3..f9f8139 100644 --- a/questioner.hs +++ b/questioner.hs @@ -22,5 +22,5 @@ main = do let isCorrect = (correct (getjust answer) q) printf "%s is %s\n\n" (getjust answer) (show isCorrect) case isCorrect of - (True) -> return $ (t+1, a+1) + (True) -> return (t+1, a+1) (False) -> return (t+1, a) \ No newline at end of file