From: Dave Bass Date: 2008-06-18T20:32:13+09:00 Subject: Re: print(true and true) #=> the parenthesis issue Robert Klemme wrote: > $ ruby -ce 'x = some_work() and puts x' > Does that give a clue? Isn't that the same as this? x = some_work() puts x unless x == false I prefer the two-line version; clarity wins over conciseness every time for me. -- Posted via http://www.ruby-forum.com/.