Guest User

Untitled

a guest
Apr 23rd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. (defn my-recursive-sum [total numbers]
  2. (if (empty? numbers)
  3. total
  4. (my-recursive-sum (+ (first numbers) total) (rest numbers))))
Add Comment
Please, Sign In to add comment