class Hash

def last

returns false.
NOTE: This method is defined only when Hash.method_defined?(:last)

Tryouts to @@instances.
It's used in Tryouts to return the most recently added instance of
Ruby 1.9 doesn't have a Hash#last (but Tryouts::OrderedHash does).
def last
  self[ self.keys.last ]
end