├── .gitignore ├── Decimal.cabal ├── LICENSE.txt ├── README.md ├── Setup.hs ├── changelog.md ├── src └── Data │ └── Decimal.hs ├── stack.yaml ├── stack.yaml.lock └── tests └── Main.hs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulJohnson/Haskell-Decimal/HEAD/.gitignore -------------------------------------------------------------------------------- /Decimal.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulJohnson/Haskell-Decimal/HEAD/Decimal.cabal -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulJohnson/Haskell-Decimal/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulJohnson/Haskell-Decimal/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulJohnson/Haskell-Decimal/HEAD/Setup.hs -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulJohnson/Haskell-Decimal/HEAD/changelog.md -------------------------------------------------------------------------------- /src/Data/Decimal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulJohnson/Haskell-Decimal/HEAD/src/Data/Decimal.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulJohnson/Haskell-Decimal/HEAD/stack.yaml -------------------------------------------------------------------------------- /stack.yaml.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulJohnson/Haskell-Decimal/HEAD/stack.yaml.lock -------------------------------------------------------------------------------- /tests/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaulJohnson/Haskell-Decimal/HEAD/tests/Main.hs --------------------------------------------------------------------------------