Created
April 19, 2017 16:58
-
-
Save nicholasjhenry/2344e57bb6c26125610556c66ae8b418 to your computer and use it in GitHub Desktop.
Simple Macro with `do` keyword
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule Foo do | |
defmacro hello(do: func) do | |
IO.puts "Hello" | |
func | |
end | |
end | |
defmodule Bar do | |
require Foo | |
def hello_world do | |
Foo.hello do | |
IO.puts "World" | |
end | |
end | |
end | |
Bar.hello_world | |
# Hello | |
# World |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment