“First, define positive(), a function that takes a sequence as an argument and counts up and returns how many positive numbers (numbers greater than 0) are in that sequence. You will want to notice that not only can you test equality using ==, you can also test for inequality using < (less than) and > (greater than).”

“Having done that, start with positive() and modify it to create pluses(). This function should compute and return the sum of all positive numbers—ignoring any numbers in the sequence that are negative or zero.”