Skip to content

Instantly share code, notes, and snippets.

@delihiros
Created December 23, 2011 14:12
Show Gist options
  • Save delihiros/1514312 to your computer and use it in GitHub Desktop.
Save delihiros/1514312 to your computer and use it in GitHub Desktop.
(define sum
(lambda (lst)
(if (null? lst)
0
(+ (car lst) (sum (cdr lst))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment