Skip to content

Instantly share code, notes, and snippets.

@qcom
Created October 26, 2013 06:14
Show Gist options
  • Save qcom/7165866 to your computer and use it in GitHub Desktop.
Save qcom/7165866 to your computer and use it in GitHub Desktop.
pop.scm
(define (pop lis)
(define (r a b)
(if (= (length b) 1)
a
(r (cons a (car b)) (cdr b))
))
(cond
((NULL? lis) '())
((= (length lis) 1) '())
(else (r (car lis) (cdr lis)))
))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment