Skip to content

Instantly share code, notes, and snippets.

@wpcarro
Created December 5, 2017 16:17
Show Gist options
  • Save wpcarro/b795e18f9b30d2f9ddf99d906db2b987 to your computer and use it in GitHub Desktop.
Save wpcarro/b795e18f9b30d2f9ddf99d906db2b987 to your computer and use it in GitHub Desktop.
Debugging Elixir private macro usage
defmodule PrivateMacros do
@moduledoc false
defmacrop test() do
quote do
IO.inspect("I compiled")
end
end
test()
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment