fortytwo-2.0.0: Interactive terminal prompt
Safe HaskellSafe-Inferred
LanguageHaskell2010

FortyTwo.Prompts.Select

Synopsis

Documentation

select :: MonadIO m => String -> [String] -> m String Source #

Select prompt from a list of options select "What's your favourite color?" [Red, Yellow, Blue]

selectWithDefault :: MonadIO m => String -> [String] -> String -> m String Source #

Select prompt from a list of options falling back to a default value if no answer will be provided selectWithDefault "What's your favourite color?" [Red, Yellow, Blue] Red