Skip to content

Instantly share code, notes, and snippets.

@vyzo
Last active November 13, 2017 09:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vyzo/496f6c4080646b98ebf2f2b61440eaaf to your computer and use it in GitHub Desktop.
Save vyzo/496f6c4080646b98ebf2f2b61440eaaf to your computer and use it in GitHub Desktop.
l2r: left-to-right evaluation
(defsyntax (l2r stx)
(syntax-case stx ()
((_ fun arg ...)
(with-syntax (((tmp ...) (gentemps #'(arg ...))))
#'(let* ((tmp arg) ...)
(fun tmp ...))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment