Why does the following Haskell code not terminate:
foldr (||) True $ repeat False -- never terminates
when something like this does:
foldr (||) False $ repeat True -- => True
To me, it's the second expression that looks to be in more trouble of not terminating. What's wrong with my view of Haskell's lazy evaluation?