Update README.md to use Stack

fixes #93
This commit is contained in:
Index Int 2015-08-13 16:25:18 +03:00
parent cffe0ef573
commit da98f7eee8

View file

@ -6,14 +6,14 @@ as `coreutils` embedded within the Haskell language.
## Quick start ## Quick start
* Install the [Haskell Platform](http://www.haskell.org/platform/) * Install [Stack](https://github.com/commercialhaskell/stack)
* `cabal install turtle` * `stack setup && stack install turtle`
Then fire up `ghci`: Then fire up `ghci`:
``` ```
$ ghci $ stack ghci
Prelude> :set -XOverloadedStrings Prelude> :set -XOverloadedStrings
Prelude> import Turtle Prelude> import Turtle
``` ```
@ -44,7 +44,7 @@ FilePath "/usr/lib/libgif.so.4.1"
... ...
``` ```
To learn more, read the [turtle tutorial](http://hackage.haskell.org/package/turtle-1.0.2/docs/Turtle-Tutorial.html). To learn more, read the [turtle tutorial](https://hackage.haskell.org/package/turtle-1.2.1/docs/Turtle-Tutorial.html).
## Goals ## Goals