Skip to content

Instantly share code, notes, and snippets.

@draftcode
Created May 17, 2011 12:38
Show Gist options
  • Select an option

  • Save draftcode/976394 to your computer and use it in GitHub Desktop.

Select an option

Save draftcode/976394 to your computer and use it in GitHub Desktop.
(define-syntax macro
(syntax-rules ()
((_ (A ...) (B ...)) (list '(A B) ...))))
(macro (1 2 3) (4 5)) ;; => ((1 4) (2 5))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment