Skip to content

Instantly share code, notes, and snippets.

@betawaffle
Created August 24, 2013 15:57
Show Gist options
  • Save betawaffle/6328945 to your computer and use it in GitHub Desktop.
Save betawaffle/6328945 to your computer and use it in GitHub Desktop.
defmodule Macro do
# ...
def extract_expressions({ :__block__, _, exprs }), do: exprs
def extract_expressions(nil), do: []
def extract_expressions(expr), do: [expr]
# ...
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment