Skip to content
/ FFP Public

Our solution for the advanced functional programming lecture.

License

Notifications You must be signed in to change notification settings

flofriday/FFP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.