The purpose of this assignment is to learn recursive methods. For this particular problem, I need to print the values of list, one per line. The skeleton of the
Think of a recursive solution like this: given a bunch of things (like a list) do something with one of those things (like the first element of the list), then pass the rest of the things to the same solution that processed one of the things
Hint: you need to think about what your solution does in the case when it's given nothing.
Hint 2: Instead of "chopping up" the array each time you recurse, just note your place in the array.