true | obj Ă¢ true
Instance Public methods
OrĂ¢Returns true
. As anObject is an argument to a
method call, it is always evaluated; there is no short-circuit evaluation
in this case.
true | puts("or") true || puts("logical or")
produces:
or
Please login to continue.