Skip to content

Instantly share code, notes, and snippets.

@philipschwarz
Created October 29, 2011 22:27
Show Gist options
  • Save philipschwarz/1325176 to your computer and use it in GitHub Desktop.
Save philipschwarz/1325176 to your computer and use it in GitHub Desktop.
multiply-by-two
(define (multiply-by-two list)
(if (null? list)
nil
(cons (* 2 (car list))
(cdr list))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment