From: Paul Brannan Date: 2002-02-20T07:20:00+09:00 Subject: Re: FalseClass / TrueClass singleton methods? On Wed, Feb 20, 2002 at 06:37:52AM +0900, Christoph wrote: > "Jason Voegele" wrote in > .... > > More likely, "true" is an instance of TrueClass ;) > > Well ``true'' is an instance of TrueClass but it also the only one! > you'll ever see ... - i.e. try any of the ``build in'' TrueClass > creating methods ( dup,clone, new etc.) and see what happens .. This is not entirely true... class << TrueClass remove_method :new end p TrueClass.new but, of course, you should not do this :) Paul