Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/opqdonut/haskell-exercises
Haskell exercises with automatic tests
https://github.com/opqdonut/haskell-exercises
Last synced: 16 days ago
JSON representation
Haskell exercises with automatic tests
- Host: GitHub
- URL: https://github.com/opqdonut/haskell-exercises
- Owner: opqdonut
- License: other
- Created: 2014-09-22T09:31:51.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2021-08-09T10:30:17.000Z (over 3 years ago)
- Last Synced: 2024-10-18T11:25:09.062Z (3 months ago)
- Language: Haskell
- Size: 95.7 KB
- Stars: 158
- Watchers: 6
- Forks: 49
- Open Issues: 1
-
Metadata Files:
- Readme: README.cabal.md
- License: LICENSE
Awesome Lists containing this project
README
Alternative Quick Start using cabal
-----------------------------------In case you have problems with `stack`, here is a more old-fashioned
way to work with the exercises.1. Install [The Haskell Platform](https://www.haskell.org/platform/)
2. Download dpendencies and check that you can run the tests:
$ cabal sandbox init
$ cabal exec runhaskell W0Test.hsThis should print `Everything seems to be OK!`. If you see any errors,
you might not have a problem with your Haskell installation.4. Generate the exercise templates (files `W*.hs`):
$ make
5. Now you can edit `W1.hs` and see how well you did by running
$ cabal exec runhaskell W1Test.hs