-- Hoogle documentation, generated by Haddock
-- See Hoogle, http://www.haskell.org/hoogle/


-- | Simple commandline text prompt functions
--   
--   The library provides prompt functions for reading user input: prompt
--   returns the input given, prompt_ ignores the input, and yesno asks for
--   confirmation.
@package simple-prompt
@version 0.1.0

module SimplePrompt
prompt :: String -> IO String
prompt_ :: String -> IO ()
yesno :: Maybe Bool -> String -> IO Bool
