https://github.com/asarkar/thinking-functionally-with-haskell
https://www.amazon.com/Thinking-Functionally-Haskell-Richard-Bird/dp/1107452643
https://github.com/asarkar/thinking-functionally-with-haskell
functional-programming haskell
Last synced: 9 months ago
JSON representation
https://www.amazon.com/Thinking-Functionally-Haskell-Richard-Bird/dp/1107452643
- Host: GitHub
- URL: https://github.com/asarkar/thinking-functionally-with-haskell
- Owner: asarkar
- License: apache-2.0
- Created: 2024-12-26T19:05:19.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-12-26T23:44:17.000Z (11 months ago)
- Last Synced: 2025-02-13T05:42:29.331Z (9 months ago)
- Topics: functional-programming, haskell
- Language: Haskell
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Exercise solutions from the book [Thinking Functionally with Haskell](https://www.amazon.com/Thinking-Functionally-Haskell-Richard-Bird/dp/1107452643).
[](https://github.com/asarkar/thinking-functionally-with-haskell/actions)
## Running tests
```
./.github/run.sh
```
To run all matching tests:
```
./.github/run.sh -m
```
To run exactly matching tests:
```
./.github/run.sh -m "//"
```
To run a _specific test_:
```
./.github/run.sh -m "/Ch11/evaluates expression/eval/"
```
To run a file containing a `main` method:
```
stack runhaskell app/Main.hs
```
To run an executable listed in `package.yaml`:
```
stack build
stack exec
```
## License
Released under [Apache License v2.0](LICENSE).