<div dir="ltr"><div>What sort of beast is ( / 8) in Haskell? It looks like it is a function that divides a number by 8.</div><div><br></div><div>*Main&gt; ( / 8 ) 4<br></div><div><div>0.5</div><div><br></div><div>*Main&gt; let a = ( / 8 )<br>
</div><div>*Main&gt; a 4</div><div>0.5</div><div><br></div><div>-- Yup that works.</div><div><br></div><div>Does ( / 8 )  turn into a function that takes an argument, so that the &quot;left&quot; input to the /, becomes a right input to the function? <br>
What  precedence rule  is being followed here?</div><div><br></div><div>Thanks,</div><div><br></div><div>Marc</div><div><br></div><div><br></div></div></div>