Skip to content

Instantly share code, notes, and snippets.

@joelmccracken
Created November 4, 2014 03:45
Show Gist options
  • Save joelmccracken/303e1a168198b20c8de2 to your computer and use it in GitHub Desktop.
Save joelmccracken/303e1a168198b20c8de2 to your computer and use it in GitHub Desktop.
(defun kernel--zip (a b)
(if (or a b)
(cons (cons (car a)
(car b))
(kernel--zip (cdr a)
(cdr b)))
nil))
(kernel--zip '(1 2 3) '(4))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment