Warmup Problem (individual assignment)

Write a function named sum that adds up all the elements in a list. For example:

(sum '(4 5 0 1)) ---> 10

Do something reasonable if the list is empty.


You must use recursion, and not iteration. You may not use side-effects.

Submit your code in a file called warmup.ss.