Skip to content

Instantly share code, notes, and snippets.

@apeiros
Created March 4, 2018 14:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save apeiros/ef042a0888fd35fbf450f0b34c498a5c to your computer and use it in GitHub Desktop.
Save apeiros/ef042a0888fd35fbf450f0b34c498a5c to your computer and use it in GitHub Desktop.
class Myclass
def getblock
yield
end
end
obj = Myclass.new
obj.getblock{
puts "this block"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment