3. Types and Typeclasses

Types categorize the kinds of data that appear in a program. Typeclasses provide general abilities that different types can have.

For example, String is a type which means a list of characters. Show is a typeclass. Every type implementing Show will have a “show” method that converts it to a string (the method does not need to have the same name as the typeclass).