From: Zach Dennis Date: 2004-10-30T03:53:06+09:00 Subject: Re: Another scrach on head David A. Black wrote: > <> > > >Almost always :-) > > irb(main):004:0> a = false > irb(main):005:0> if (a); puts 2; end > => nil > irb(main):006:0> if (not a.nil?); puts 6; end > 6 > => nil > > > > :-) You are correct , thx for the correction. Zach