@dmarcoux/haskell-programming-from-first-principles
Going through the book "Haskell Programming from First Principles"
This repository contains my solutions to the exercises from the book "Haskell Programming from First Principles"
- Install Haskell with Stack
- Start the REPL with
stack ghci:?to display available commands:qto quit GHCi:l test.hsto load the specified module(s):i somethingto display information about a given name (class, constructor, function):t somethingto display the type of something:mto unload all modules (useful to start from fresh)