I have some problems understanding some Pascal boolean expressions, and don't understand how chained or / and
work.
- Why does
False or True and True
=True
? - Why does
False or True and True or False
=True
?
As I can see it evaluates them from the right to the left, or there is something I'm missing?