I don't understand why the following statement puts: "One is less than two!" to the screen instead of the code directly in front of puts?
Here's the statement:
X = 1 < 2
puts X == true ? "One is less than two!" : "One is not less than two."
Can someone explain why?