Skip to content

Latest commit

 

History

History

README.md

The Craft of Functional Programming

This folder contains my solutions to all exercises from The Craft of Functional Programming by Simon Thompson.

It is not necessary to install the code provided for the book to work through the exercises, but should you want to do so, the instructions are provided below.

Setup

First, make sure you have GHCup installed.

Then, to install the code provided for the book manually (file included in this repository), run:

tar -xvf Craft3e-2.0.0.tar.gz
cd Craft3e-2.0.0
cabal install

Alternatively, you can use:

cabal unpack Craft3e
cd Craft3e
cabal install

Resources