Skip to content

Instantly share code, notes, and snippets.

@philosodad
Created February 29, 2016 23:09
Show Gist options
  • Save philosodad/e31fa52a4ac2dc99a408 to your computer and use it in GitHub Desktop.
Save philosodad/e31fa52a4ac2dc99a408 to your computer and use it in GitHub Desktop.
defmodule Settings do
defmacro create_method(name) do
m_name = String.to_atom("get_#{name}")
quote do
def unquote(m_name)() do
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment