On Nov 28, 2007 5:37 PM, Yukihiro Matsumoto <matz / ruby-lang.org> wrote: > > Precedence. > > x = true and false > > is parsed as > > (x = true) and false > > not > > x = (true and false) > > matz. > > Of course, that makes perfect sense - I guess I am still getting used to Ruby's awesome level of flexibility! Thanks a lot for the quick reply matz, btw - big fan of your work :). Also, thanks Christian - I will make use of the && in the future! Thanks, Malcolm.