class Object # Synonymous with #clone, this is an interesting # method in that it promotes prototype-based Ruby. # Now Classes aren't the only things that respond to #new. # # require 'facet/object/new' # # "ABC".new => "ABC" # def new self.clone end end