Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dnadales/marlows-parconc-exercises
Exercises for the book "Parallel and Concurrent Programming in Haskell"
https://github.com/dnadales/marlows-parconc-exercises
Last synced: 15 days ago
JSON representation
Exercises for the book "Parallel and Concurrent Programming in Haskell"
- Host: GitHub
- URL: https://github.com/dnadales/marlows-parconc-exercises
- Owner: dnadales
- License: gpl-3.0
- Created: 2016-05-21T11:45:58.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-10-03T06:58:28.000Z (over 8 years ago)
- Last Synced: 2024-11-06T09:25:46.735Z (2 months ago)
- Language: Haskell
- Size: 85.9 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Exercises for the book "Parallel and Concurrent Programming in Haskell"
This project adds some exercises for the different topics presented in the book
"Parallel and Concurrent Programming in Haskell", by Simon Marlow. The
exercises in this repository are taken from the examples of the book, but there
is no other relation between this repository and the book author.The idea of this repository is that you can try to implement the different
functions described in the book by yourself before reading the author's
solutions. To help in this purpose, there are unit tests that should succeed
once the functionality is implemented.To be able to build and run the tests, you need to have
[Stack](https://github.com/commercialhaskell/stack) installed in your machine.
Once `stack` is installed in the system, the tests for a given book chapter can
be run by going to the desired directory and executing:stack test
After implementing the functions as prescribed in the book, the tests should
pass.