Skip to content

Instantly share code, notes, and snippets.

@henrik
Created January 28, 2016 17:50
Show Gist options
  • Save henrik/a080b317b8c85b2359e2 to your computer and use it in GitHub Desktop.
Save henrik/a080b317b8c85b2359e2 to your computer and use it in GitHub Desktop.
defmodule Example do
def unquote(:"foo bar")() do
IO.puts "hi!"
end
def unquote(:"täst")() do
IO.puts "hä!"
end
end
apply(Example, :"foo bar", [])
apply(Example, :"täst", [])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment