Guest User

Untitled

a guest
Feb 19th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. (define nconc
  2. (lambda (x y)
  3. (cond ((null? x) y)
  4. ((null? (cdr x)) (set-cdr! x y) x)
  5. (else (nconc (cdr x) y) x))))
Add Comment
Please, Sign In to add comment