There is quite a lot to criticize Solidity but this is quite a bad example. Operator precedence is often different between languages.
And because some languages miss a boolean type, you can't deduce if 1 was because of the bitwise or operator or the less-than operator.
Let's take a look at (2 | 0 < 1) instead.
C and JavaScript result in 3.
Ruby and Python return False.
Java throws a compilation error: error: bad operand types for binary operator '|'. first type: int, second type: boolean
Now which of these behaviours is the one that is the universal right one? (Hint: no one, you should always know the rules of the language you program in or if you don't, just throw in some parentheses to be on the safe side)
There's a, what, 50 year tradition in C of boolean ORs evaluating left to right. I don't know truthiness rules in Python, but the REPL just told me 1 is not False. So we have something that is not False ORed with True. What is your thought process?
There is only a single bitwise OR here, and no logical ORs. Whether they are evaluated left to right or right to left makes no difference in the execution of this expression.
Swap it left and right:
(1 > 0 | 1)
And you'll see that C still gives you 1, and Python still gives you False.
>we have something that is not False ORed with True
No. We have (in the original Python equation) 1 ORed with 0. That results in 1. Then that resultant 1 is compared ('<') with 1. That comparison results in False .
The difference between Python and C is that in Python '|' has higher precedence than '<', but in C '<' has higher precedence than '|'. Dennis Ritchie admits that this is a mistake in the C language[1]. Python (and Solidity) have corrected that mistake.
The reason that '|' should have higher precedence than '<' is the same reason that '+' should have higher precedence than '<'. Namely, people want to do arithmetic calculations ('|' and '+') then compare the result of those calculations ('<' and '=='). There is essentially no situation where it is useful to have '<' have higher precedence than '|'.
What a bad language design... I thought they mostly copied javascript but not even that one works in javascript so who knows what they thought when designing the operators.