Skip to content

Instantly share code, notes, and snippets.

@apeiros
Created March 4, 2018 14:54
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