Sum of Odd Integers
Write a recursive function sum-odds that takes a non-empty list of integers as an argument and returns the sum of only the odd integers in the list.
In class we explored a recursive function called rsum that recursively computes the sum of a list of integers use it as a model to get started.
Your function must be recursive and must not use any loops.