Skip to content

Instantly share code, notes, and snippets.

@yakreved
Created August 14, 2013 02:09
Show Gist options
  • Save yakreved/6227459 to your computer and use it in GitHub Desktop.
Save yakreved/6227459 to your computer and use it in GitHub Desktop.
sicp 2.18 reverse list
(define (reversel l)
(if (null? l)
l
(append (reversel (cdr l)) (list (car l)))
)
)
(reversel (list 1 4 9 16 25))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment