Skip to content

Instantly share code, notes, and snippets.

@m2ym
Created March 14, 2012 08:46
Show Gist options
  • Select an option

  • Save m2ym/2035165 to your computer and use it in GitHub Desktop.

Select an option

Save m2ym/2035165 to your computer and use it in GitHub Desktop.
eval-in-lexenv
(defmacro m (&environment env)
(sb-int:eval-in-lexenv '(n) env))
(macrolet ((n () "Hello!")) (m))
; => "Hello!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment