Very nice article.<p>> 7. Functions Have Precedence over Operators<p>Yup. The killer for me has always been things like<p><pre><code> f x:xs
</code></pre>
Never does what I want. But at least there is only a simple rule to remember.<p>> 9. There is no Order<p>Oooo, careful there. It may not matter what order I define f & g in, but the following means something else if I reverse the order of the lines:<p><pre><code> f 0 = 1
f x = x</code></pre>