@hackage optparse-simple0.1.1.4
Simple interface to optparse-applicative
Installation
Dependencies (7)
- base >=4.9.1 && <5
- template-haskell
- transformers >=0.4
- githash >=0.1.3.0
- optparse-applicative
- semigroups >=0.18 && <0.19 Show all…
Dependents (26)
@hackage/tn, @hackage/keid-core, @hackage/jl, @hackage/rio-app, @hackage/haskus-system-build, @hackage/sdl2-sprite, Show all…
Package Flags
build-example
(off by default)
Build the example executable
optparse-simple
Simple interface to optparse-applicative
Usage
Typical usage with no commands:
do (opts,()) <-
simpleOptions "ver"
"header"
"desc"
(flag () () (long "some-flag"))
empty
doThings opts
Typical usage with commands:
do (opts,runCmd) <-
simpleOptions "ver"
"header"
"desc"
(pure ()) $
do addCommand "delete"
"Delete the thing"
(const deleteTheThing)
(pure ())
addCommand "create"
"Create a thing"
createAThing
(strOption (long "hello"))
runCmd