Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (loop for y in '(1 2 3 4 5)
- for x-list = '(a b c) then (cdr x-list)
- for x = (or (car x-list) 'z)
- collect (list x y))
- ;; ((A 1) (B 2) (C 3) (Z 4) (Z 5))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement