Created
March 16, 2011 22:49
-
-
Save fbenevides/873489 to your computer and use it in GitHub Desktop.
soma 1 em cada elemento da lista
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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