From: Florian Frank Date: 2006-04-01T07:00:59+09:00 Subject: Re: TrueClass/FalseClass vs. Boolean John W. Long wrote: > You could always assign some new constants to them: > > True = TrueClass > False = FalseClass > > case y > when Integer > when True, False > end Or just use the literal constants, that already exist: case y when Integer when true, false end -- Florian Frank