Skip to content

Instantly share code, notes, and snippets.

@bjhaid
Last active August 29, 2015 14:12
Show Gist options
  • Save bjhaid/55e9672d31db93066636 to your computer and use it in GitHub Desktop.
Save bjhaid/55e9672d31db93066636 to your computer and use it in GitHub Desktop.
defmodule A do
defmacro left >| right do
quote do
:math.pow unquote(left), unquote(right)
end
end
end
Code.require_file("a.exs")
defmodule Foo do
Code.require_file("a.exs")
def pow do
Code.require_file("a.exs")
2 >| 3
end
end
IO.inspect Foo.pow
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment