Skip to content

Instantly share code, notes, and snippets.

@EricIO
Created September 19, 2015 16:52
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 EricIO/ece68cda0a2cab90523a to your computer and use it in GitHub Desktop.
Save EricIO/ece68cda0a2cab90523a to your computer and use it in GitHub Desktop.
(define-syntax multiple-let
(syntax-rules ()
[(_ ((x* e*) ...) body body* ...)
((lambda (x* ...) body body* ...) e* ...)]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment