Booleans

An introduction to the Boolean data type and some of its predefined functions.

We'll cover the following...

Let’s focus some more on Haskell’s basic data types. After all, just using arithmetic operations does not allow us to write interesting functions.

In this lesson, we will be using ghci again, which you can run from the following terminal window:

Terminal 1
Terminal
Loading...

The Bool type

Bool is the data type of truth values, named in honor of the famous logician George Boole. It contains exactly two distinct values: True and False.

Booleans can be negated with not or combined with the binary operators && (conjunction) and || (disjunction).

 ...