What will the variables 'roses' and 'violets' contain after the following statements are executed?
roses = "blue" && "red" violets = "blue" and "red" I expected roses = "red", violets = "blue", as the precendece order of operators is:
- &&
- =
- and
But the irb shows both of them as "red". Any Explanations?