definition:
|
askYesNo :: String -> IO String
askYesNo question = do
putStr question
hFlush stdout
answer <- fmap (map toLower) getLine
if null answer
then return answer
else if answer `isPrefixOf` "yes"
then return "yes"
else if answer `isPrefixOf` "no"
then return "no"
else askYesNo question -- again
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Ask a question and return the answer which must be empty, `yes`, or `no`.
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> _}
|
name:
|
askYesNo
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> Prelude.IO String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|