class Object

def tap(&block)

def tap(&block)
  yield(self) if block_given?
  return self
end