<div dir="ltr"><br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
I don't understand how laziness enters the picture:<br>
<br>
    (False && ⊥) && ⊥ ≡ False<br>
    False && (⊥ && ⊥) ≡ False<br>
<br>
in both cases we get the same result.<br></blockquote><div><br></div><div>The first expression builds two thunks before trying the leftmost operand, and the second one only builds one thunk.  More generally, a left-associative conjunction of n lazy Bools will build n - 1 thunks at once when forced, but a right-associative one will have only one at a time, though it may have to iterate through all n - 1 before finishing.<br></div></div></div>