Recall that we defined list_fold by let rec list_fold f…
Recall that we defined list_fold by let rec list_fold f e l = match l with | [] -> e | (x :: l’) -> f x (list_fold f e l’) State the value (of type int) of each call to list_fold: