├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── Setup.hs ├── app └── Main.hs ├── src ├── Core.hs ├── Types.hs └── Util.hs ├── stack.yaml ├── swim.cabal └── test └── Spec.hs /.gitignore: -------------------------------------------------------------------------------- 1 | .stack-work/ 2 | TAGS 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpfuentes2/swim/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpfuentes2/swim/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpfuentes2/swim/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpfuentes2/swim/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /app/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpfuentes2/swim/HEAD/app/Main.hs -------------------------------------------------------------------------------- /src/Core.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpfuentes2/swim/HEAD/src/Core.hs -------------------------------------------------------------------------------- /src/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpfuentes2/swim/HEAD/src/Types.hs -------------------------------------------------------------------------------- /src/Util.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpfuentes2/swim/HEAD/src/Util.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpfuentes2/swim/HEAD/stack.yaml -------------------------------------------------------------------------------- /swim.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpfuentes2/swim/HEAD/swim.cabal -------------------------------------------------------------------------------- /test/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpfuentes2/swim/HEAD/test/Spec.hs --------------------------------------------------------------------------------