Skip to content

Instantly share code, notes, and snippets.

@brodock
Created January 14, 2015 18:06
Show Gist options
  • Save brodock/1775ae2e39805723b939 to your computer and use it in GitHub Desktop.
Save brodock/1775ae2e39805723b939 to your computer and use it in GitHub Desktop.
metaprogramming example
def x(&block)
"alguma coisa".tap &block
puts "outra coisa"
end
x { |obj| puts "METAPROGRAMMING: #{obj.inspect}" }
# METAPROGRAMMING: "alguma coisa"
# outra coisa
# => nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment