Recursive Functions
This lesson will teach us how to implement recursion in ReasonML.
We'll cover the following...
Definition
Recursion is the process in which a function calls itself during runtime. It stops at the base case. The base case is a check which specifies the final level of recursion.
We can think of recursion as boxes within ...