Exercise: Count Even Integers in a List
Use pattern matching to count the number of even integers in a list.
We'll cover the following...
Problem Statement
You must implement the countEven()
function which counts the number of even integers in a list. Since a ...