Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 956 Bytes

README.md

File metadata and controls

36 lines (26 loc) · 956 Bytes

FFP

Our solution for the advanced functional programming lecture at TU Wien.

Run the examples and tests:

$ ghci
GHCi, version 9.2.8: https://www.haskell.org/ghc/  :? for help
ghci> :load exercise1.hs
[1 of 1] Compiling Main             ( exercise1.hs, interpreted )
Ok, one module loaded.
ghci> runTests
passed gierig 2/3
[...]
ghci>

Of course your ghc version might vary, and you will need to replace the exercise version with the one you want to run.

To enable time tracking inside ghci, you can use :set +s.

Assignment 3

In order to run assignment 3, the library QuickCheck is needed. You can install it with:

cabal update
cabal install --lib QuickCheck

Project

The last assignment was the miniCheck project and since it is quite large it has it's own subdirectory with it's own README.