https://github.com/alisianoi/fprog16
Functional Programming exercises at TU Wien, WS16
https://github.com/alisianoi/fprog16
assignment exercise fprog ghci tuwien ws16
Last synced: about 2 months ago
JSON representation
Functional Programming exercises at TU Wien, WS16
- Host: GitHub
- URL: https://github.com/alisianoi/fprog16
- Owner: alisianoi
- License: mit
- Created: 2016-12-19T12:42:47.000Z (almost 9 years ago)
- Default Branch: main
- Last Pushed: 2020-10-10T15:03:09.000Z (about 5 years ago)
- Last Synced: 2025-03-18T02:19:29.045Z (7 months ago)
- Topics: assignment, exercise, fprog, ghci, tuwien, ws16
- Language: Haskell
- Size: 2.28 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog.md
- License: LICENSE
Awesome Lists containing this project
README
Functional Programming Course at TU Vienna, WS16
Brief list of contents:
1. Official problem statements in `docs`
2. Official tests for each exercise in `results`
3. My solutions and my tests of those solutions in `src` and `test`This project works both on Hugs and GHCi
Assuming you have GHCi, cabal and HSpec, a quick start would look like:
```
cabal update
cabal configure --enable-tests
cabal build
cabal test
```Note: looks like Haskell setup changed on Archlinux, the configure
step now looks like this:```
cabal configure --disable-library-vanilla --enable-shared --enable-executable-dynamic
```Part 1 of Task 8 was formulated in a very poor fashion and generally
was not worth the trouble (too few points, too much effort and second
guessing), otherwise you should be all set to go.