Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. (define (zip one two)
  2. (if (not (and (null? one) (null? two)))
  3. (cons (list (first one) (first two))
  4. (zip (rest one) (rest two)))
  5. '()))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement