x $ y = x2 + y
where x, y are integers. Extend the definition of ``evaluate'' presented earlier to include the operators $ and / (normal division).
fib(n) = {fib(n-1) + fib(n-2) if n>1 }
{1 if n=0 or n=1}
Implement a recursive function to calculate the nth fibonacci
number.
For example, (merge '(1 2 3) '(2 2 2)) should return 60, since
(1+2)*(2+2)*(3+2)=60.
(defun mystery (n)
(cond ((= n 0) 0)
(t (mystery (- n 1)))))