├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Data └── Refined.hs ├── LICENSE.md ├── README.md ├── Setup.hs └── facts.cabal /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkkrp/facts/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkkrp/facts/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkkrp/facts/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Data/Refined.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkkrp/facts/HEAD/Data/Refined.hs -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkkrp/facts/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkkrp/facts/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkkrp/facts/HEAD/Setup.hs -------------------------------------------------------------------------------- /facts.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrkkrp/facts/HEAD/facts.cabal --------------------------------------------------------------------------------