blob: 143696b0d08ad6699e50cfea14cf6f09e9439c28 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{-
- Copyright 2015 Egor Tensin <Egor.Tensin@gmail.com>
- This file is licensed under the terms of the MIT License.
- See LICENSE.txt for details.
-}
module Utils where
import Control.Monad (liftM)
import Data.Char (toLower)
import System.IO (hFlush, stdout)
prompt :: String -> IO String
prompt banner = do
putStr banner
hFlush stdout
getLine
promptYesNo :: String -> IO Bool
promptYesNo banner = do
response <- liftM (map toLower) $ prompt banner
if response `elem` yeses
then return True
else if response `elem` noes
then return False
else promptToContinue
where
yeses = ["y", "yes"]
noes = ["n", "no"]
promptToContinue :: IO Bool
promptToContinue = promptYesNo "Continue? (y/n) "
|