Skip to content

Instantly share code, notes, and snippets.

@latentflip
Created December 30, 2012 16:21
Show Gist options
  • Save latentflip/4413578 to your computer and use it in GitHub Desktop.
Save latentflip/4413578 to your computer and use it in GitHub Desktop.
def meth(&blk)
foo = yield(10)
puts "foo was #{foo}"
end
meth do |n|
n * 3
end
# => "foo was 30"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment