Browse Source

Update tell.hs

master
nisstyre56 12 years ago
parent
commit
a71fcec885
  1. 2
      tell.hs

2
tell.hs

@ -11,7 +11,7 @@ questionPath = "./questions.json"
check = (readline "> ") >>= output where
output (Nothing) = return Nothing
output (Just a) | a == "END" = return Nothing
| otherwise = return (Just a)
| otherwise = return (Just a)
getQuestions = whileJust check return
getQuestionFile = So.readFile questionPath