I discovered something that seems really strange to me. This "works" in Ruby 1.8.7-p352 and 1.9.2-p290 both.
If I do this:
(false true)
it fails with a syntax error, as I'd expect. But if I do this:
(false
true)
the code is executed! Worse, it doesn't behave like an AND or OR; it throws away the first condition and returns the result of the second.
Is this considered a bug or a feature? I found an erroneous construct similar to this during a code review, and I'm not happy that Ruby failed to reject it.
(false; true)– 32bitkid Dec 7 '11 at 20:01