Skip to content

Instantly share code, notes, and snippets.

@wilbowma
Created May 20, 2014 18:50
Show Gist options
  • Save wilbowma/e9c32111d99867081e9d to your computer and use it in GitHub Desktop.
Save wilbowma/e9c32111d99867081e9d to your computer and use it in GitHub Desktop.
(define-syntax (trace-define stx)
(syntax-case stx ()
[(_ e ...)
(with-syntax ([name (syntax-local-infer-name stx)])
#'(begin (define e ...) (trace name)))]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment