Skip to content

Instantly share code, notes, and snippets.

@fbenevides
Created March 16, 2011 22:49
Show Gist options
  • Save fbenevides/873489 to your computer and use it in GitHub Desktop.
Save fbenevides/873489 to your computer and use it in GitHub Desktop.
soma 1 em cada elemento da lista
(define (soma1 x)
(if (null? x)
'()
(cons (+ 1 (car x)) (soma1 (cdr x)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment