From: Michael Bevilacqua-Linn Date: 2007-07-23T12:39:00+09:00 Subject: Re: false ------=_Part_116770_7319347.1185161941381 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline False and if are probably as simple as you think they are... irb(main):001:0> foo = false => false irb(main):002:0> if foo; puts "I'm foo!"; end => nil irb(main):003:0> foo = true => true irb(main):004:0> if foo; puts "I'm foo!"; end I'm foo! => nil irb(main):005:0> Chances are you're doing something else wrong... What does, "The script doesn't work correctly" mean? Is an exception thrown, are you getting incorrect results? Code samples are also helpful. MBL ------=_Part_116770_7319347.1185161941381--