├── .gitignore ├── .travis.yml ├── ChangeLog.md ├── LICENSE ├── README.md ├── Setup.hs ├── example └── Simple.hs ├── package.yaml ├── src └── Options │ └── Applicative │ └── Simple.hs ├── stack.yaml └── test └── Main.hs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpco/optparse-simple/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpco/optparse-simple/HEAD/.travis.yml -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpco/optparse-simple/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpco/optparse-simple/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpco/optparse-simple/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /example/Simple.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpco/optparse-simple/HEAD/example/Simple.hs -------------------------------------------------------------------------------- /package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpco/optparse-simple/HEAD/package.yaml -------------------------------------------------------------------------------- /src/Options/Applicative/Simple.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpco/optparse-simple/HEAD/src/Options/Applicative/Simple.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpco/optparse-simple/HEAD/stack.yaml -------------------------------------------------------------------------------- /test/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpco/optparse-simple/HEAD/test/Main.hs --------------------------------------------------------------------------------