Skip to content

Instantly share code, notes, and snippets.

@mattvonrocketstein
Created November 9, 2015 04:19
Show Gist options
  • Save mattvonrocketstein/ce8426e5bfc75d480b86 to your computer and use it in GitHub Desktop.
Save mattvonrocketstein/ce8426e5bfc75d480b86 to your computer and use it in GitHub Desktop.
elixir_macros
defmacro print(thing) do
if String.valid?(thing) do
quote bind_quoted: binding() do
IO.puts thing
end
else
quote bind_quoted: binding() do
IO.puts("#{inspect thing}")
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment