Skip to content

Instantly share code, notes, and snippets.

@nicholasjhenry
Created April 19, 2017 16:58
Show Gist options
  • Save nicholasjhenry/2344e57bb6c26125610556c66ae8b418 to your computer and use it in GitHub Desktop.
Save nicholasjhenry/2344e57bb6c26125610556c66ae8b418 to your computer and use it in GitHub Desktop.
Simple Macro with `do` keyword
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