Module 01: Introduction to Haskell

In this module you will focus on learning some of the basics of the Haskell programming language. If you already know some Haskell, you should focus on helping your partner(s) understand all the material in this module. However, keep in mind that people learn best by doing, not by being told. The driver should be whoever has the least experience with Haskell.

This file is a “literate Haskell document”: only lines preceded by > and a space (see below) are code; everything else (like this paragraph) is a comment, formatted using Markdown syntax. Literate Haskell documents have an extension of .lhs, whereas non-literate Haskell source files use .hs.

GHCi

Hint: to kill a runaway ghci evaluation, use Ctrl+C.

Basic Haskell declarations

Now consider the following Haskell code.

Arithmetic

(Haskell has floating-point values too, but we won’t use them much in this course.)

Booleans

Pairs

Values like (n,c) are called pairs, or more generally, tuples. (Haskell also has 3-tuples, 4-tuples, … but we will not use them.)

Functions

Evaluate the following expressions:

A function takes one or more input values and produces a single output value.

Pattern matching

Guards

Practice