@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:q
to quit GHCi:l test.hs
to load the specified module(s):i something
to display information about a given name (class, constructor, function):t something
to display the type of something:m
to unload all modules (useful to start from fresh)