├── .ghci ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.lhs ├── README.md ├── Setup.lhs ├── driver └── Main.hs ├── package.yaml ├── reserve.cabal ├── src ├── Interpreter.hs ├── Options.hs ├── Reserve.hs └── Util.hs └── test ├── Helper.hs ├── OptionsSpec.hs ├── ReserveSpec.hs ├── Spec.hs └── UtilSpec.hs /.ghci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/reserve/HEAD/.ghci -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /dist/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/reserve/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/reserve/HEAD/LICENSE -------------------------------------------------------------------------------- /README.lhs: -------------------------------------------------------------------------------- 1 | README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/reserve/HEAD/README.md -------------------------------------------------------------------------------- /Setup.lhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/reserve/HEAD/Setup.lhs -------------------------------------------------------------------------------- /driver/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/reserve/HEAD/driver/Main.hs -------------------------------------------------------------------------------- /package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/reserve/HEAD/package.yaml -------------------------------------------------------------------------------- /reserve.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/reserve/HEAD/reserve.cabal -------------------------------------------------------------------------------- /src/Interpreter.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/reserve/HEAD/src/Interpreter.hs -------------------------------------------------------------------------------- /src/Options.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/reserve/HEAD/src/Options.hs -------------------------------------------------------------------------------- /src/Reserve.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/reserve/HEAD/src/Reserve.hs -------------------------------------------------------------------------------- /src/Util.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/reserve/HEAD/src/Util.hs -------------------------------------------------------------------------------- /test/Helper.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/reserve/HEAD/test/Helper.hs -------------------------------------------------------------------------------- /test/OptionsSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/reserve/HEAD/test/OptionsSpec.hs -------------------------------------------------------------------------------- /test/ReserveSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/reserve/HEAD/test/ReserveSpec.hs -------------------------------------------------------------------------------- /test/Spec.hs: -------------------------------------------------------------------------------- 1 | {-# OPTIONS_GHC -F -pgmF hspec-discover #-} 2 | -------------------------------------------------------------------------------- /test/UtilSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/reserve/HEAD/test/UtilSpec.hs --------------------------------------------------------------------------------