@hackage blunt0.0.7

Point-free Haskell as a service.

Blunt

Blunt makes Haskell expressions pointfree.


Install

$ cabal update
$ cabal install 'blunt ==0.0.*'

Develop

$ git clone https://github.com/tfausak/blunt
$ cd blunt
$ cabal sandbox init
$ cabal install happy
$ cabal install

Deploy

$ heroku create
$ git checkout -b deploy
$ echo 'web: ./blunt' > Procfile
$ cp dist/build/blunt/blunt .
$ touch requirements.txt
$ git add Procfile blunt requirements.txt
$ git commit -m v0.0.7
$ git push heroku deploy:master