Created
October 26, 2013 06:14
-
-
Save qcom/7165866 to your computer and use it in GitHub Desktop.
pop.scm
This file contains 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 (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