1
1
mirror of https://github.com/qfpl/applied-fp-course.git synced 2024-11-26 06:38:40 +03:00
Add information on how to load the application into the repl, may
need expanding after field testing.
This commit is contained in:
Sean Chalmers 2018-05-09 11:32:31 +10:00
parent 1266c83611
commit 0dfeffd040

View File

@ -66,3 +66,17 @@ $ curl -XPOST -v localhost:<port>/puppies/add
$ curl -XGET -v localhost:<port>/puppies/view
$ curl -XGET -v localhost:<port>/list
```
### Loading the Program:
We're able to load our program into the Haskell REPL, so we can try out
functions and data structures. Test things and have a more interactive
development workflow:
```bash
$ cabal new-repl level02-exe
```
```bash
$ stack ghci
```