Part 1:Basic Functional Programming
This part introduces you to the Haskell programming language. You will get an overview of the basic functional programming language features. In particular, you will start with the key concepts and functions, expanding into the data processed by functions (algebraic datatypes), the way to write loops with functions (recursion), and functions taking other functions as input (higher-order functions).
This part has the following chapters:
- Chapter 1, Functions
- Chapter 2, Algebraic Datatypes
- Chapter 3, Recursion
- Chapter 4, Higher-Order Functions