packages feed

questioner-0.1.0.0: examples/CheckboxPrompt.hs

import System.Console.Questioner

main :: IO ()
main = do
    fs <- prompt ( "What features would you like included?"
                 , [ "Testing" , "Makefile", "guard support" ] )
    putStrLn "Your choices:"
    mapM_ putStrLn fs